Skip to content

Commit

Permalink
build: 🔧 Setup beta workfloww (#13)
Browse files Browse the repository at this point in the history
* 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
JamesIves authored Jun 18, 2024
1 parent 6d49b7b commit 1b368c1
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 14 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/beta.yml
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 }}
29 changes: 27 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/pull-request-label.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches-ignore:
- main
- beta
workflow_dispatch:
jobs:
build:
Expand Down
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ COPY ./hlds.txt /opt/steam
# Replace $GAME with the requested mod to install in hlds.txt.
RUN sed -i "s/\$GAME/${GAME}/g" /opt/steam/hlds.txt

RUN if [ "$GAME" = "gearbox" ]; then \
for i in 10 50 70 90; do \
wget -q https://raw.githubusercontent.com/dgibbs64/HLDS-appmanifest/main/OpposingForce/appmanifest_$i.acf -O appmanifest_$i.acf; \
done; \
fi

RUN curl -v -sL media.steampowered.com/client/installer/steamcmd_linux.tar.gz | tar xzvf - && \
file /opt/steam/linux32/steamcmd && \
./steamcmd.sh +runscript /opt/steam/hlds.txt
Expand Down

0 comments on commit 1b368c1

Please sign in to comment.