Skip to content

build(deps): bump ubuntu from 18.04 to 24.04 in /container (#48) #90

build(deps): bump ubuntu from 18.04 to 24.04 in /container (#48)

build(deps): bump ubuntu from 18.04 to 24.04 in /container (#48) #90

Workflow file for this run

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,
cstrike-legacy,
valve,
valve-legacy,
czero,
czero-legacy,
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: Set GAME environment variable 🎮
working-directory: ./container
run: |
GAME=${{ matrix.game }}
GAME=${GAME%-legacy}
echo "GAME=$GAME" >> $GITHUB_ENV
- name: Replace fallback value in Dockerfile and entrypoint.sh
working-directory: ./container
run: |
sed -i "s/\${GAME:-valve}/\${GAME:-${{ env.GAME }}}/g" Dockerfile
sed -i "s/\${GAME:-valve}/\${GAME:-${{ env.GAME }}}/g" entrypoint.sh
- name: Configure SteamCMD to install the legacy engine version 🚒
if: contains(matrix.game, 'legacy')
run: echo "FLAG=-beta steam_legacy" >> $GITHUB_ENV
- name: Build and Push Docker Image to DockerHub 🐳
uses: docker/build-push-action@v6
env:
GAME: ${{ env.GAME }}
FLAG: ${{ env.FLAG }}
VERSION: beta
IMAGE: jives/hlds:${{ matrix.game }}-beta
with:
context: ./container
push: true
tags: jives/hlds:${{ matrix.game }}-beta
build-args: |
GAME=${{ env.GAME }}
FLAG=${{ env.FLAG }}
IMAGE=jives/hlds:${{ matrix.game }}-beta
VERSION=beta
- 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@v6
env:
GAME: ${{ env.GAME }}
FLAG: ${{ env.FLAG }}
VERSION: beta
IMAGE: ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-beta
with:
context: ./container
push: true
tags: ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-beta
build-args: |
GAME=${{ env.GAME }}
FLAG=${{ env.FLAG }}
VERSION=beta
IMAGE=ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-beta