-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* t * t * c * c * Update hlds.txt * Update Dockerfile * Update Dockerfile * Update hlds.txt * Update hlds.txt * Update publish.yml * Update publish.yml * Update publish.yml * Update validate.yml * Update pull-request-label.yml * Update pull-request-label.yml * fix: resolve publishing issues * Delete pull-request-label.yml * Update beta.yml * Update beta.yml * Update beta.yml
- Loading branch information
Showing
5 changed files
with
100 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Publish Beta Docker Images 🐋 📦 | ||
on: | ||
push: | ||
branches: | ||
- beta | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: write | ||
attestations: write | ||
id-token: write | ||
strategy: | ||
matrix: | ||
game: [cstrike, valve, czero, dmc, gearbox, ricochet, dod, tfc] | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: "0" | ||
|
||
- name: Set up Docker Buildx 🛠️ | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to DockerHub 🐳 | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: Login to GitHub Container Registry 🐳 | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Replace fallback value in Dockerfile and entrypoint.sh | ||
run: | | ||
sed -i "s/\${GAME:-valve}/\${GAME:-${{ matrix.game }}}/g" Dockerfile | ||
sed -i "s/\${GAME:-valve}/\${GAME:-${{ matrix.game }}}/g" entrypoint.sh | ||
- name: Build and Push Docker Image to DockerHub 🐳 | ||
uses: docker/build-push-action@v5 | ||
env: | ||
GAME: ${{ matrix.game }} | ||
with: | ||
context: . | ||
push: true | ||
tags: jives/hlds:${{ matrix.game }}-beta | ||
build-args: GAME=${{ matrix.game }} | ||
|
||
- name: Set repo owner to lowercase | ||
id: repo_owner | ||
run: echo "::set-output name=repo_owner::$(echo ${{ github.repository_owner }} | awk '{print tolower($0)}')" | ||
|
||
- name: Build and Push Docker Image to GitHub Container Registry 🐳 | ||
uses: docker/build-push-action@v5 | ||
env: | ||
GAME: ${{ matrix.game }} | ||
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-beta | ||
build-args: GAME=${{ matrix.game }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,26 @@ on: | |
branches: | ||
- main | ||
jobs: | ||
version: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{ steps.create_tag.outputs.new_tag }} | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: "0" | ||
|
||
- name: Bump Version and Create Tag 🏷️ | ||
id: create_tag | ||
uses: anothrNick/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
WITH_V: true | ||
DEFAULT_BUMP: patch | ||
DRY_RUN: true | ||
build: | ||
needs: version | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
|
@@ -48,7 +67,9 @@ jobs: | |
with: | ||
context: . | ||
push: true | ||
tags: jives/hlds:${{ matrix.game }} | ||
tags: | | ||
jives/hlds:${{ matrix.game }} | ||
jives/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }} | ||
build-args: GAME=${{ matrix.game }} | ||
|
||
- name: Set repo owner to lowercase | ||
|
@@ -62,7 +83,9 @@ jobs: | |
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }} | ||
tags: | | ||
ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }} | ||
ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }} | ||
build-args: GAME=${{ matrix.game }} | ||
|
||
publish: | ||
|
@@ -78,6 +101,7 @@ jobs: | |
|
||
- name: Bump Version and Create Tag 🏷️ | ||
id: create_tag | ||
if: github.ref == 'refs/heads/main' | ||
uses: anothrNick/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -86,6 +110,7 @@ jobs: | |
|
||
- name: Create Release 🚀 | ||
id: create_release | ||
if: github.ref == 'refs/heads/main' | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ on: | |
push: | ||
branches-ignore: | ||
- main | ||
- beta | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters