Skip to content

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '.vscode/**'
- '.github/workflows/dockerhub-description.yml'
pull_request:
workflow_dispatch:
schedule:
- cron: '0 1 * * 0'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mod:
- valve
- cstrike
tagName:
- legacy
- regamedll
- bugfixedhl
exclude:
- mod: valve
tagName: regamedll
- mod: cstrike
tagName: bugfixedhl
# - czero
# - dod
# - gearbox
# - tfc
# - ricochet
# - dmc
env:
needToPush: ${{ github.ref == 'refs/heads/master' }}
steps:
- uses: actions/[email protected]
- uses: docker/[email protected]
- name: Log in to Docker Hub
if: ${{ env.needToPush }}
uses: docker/[email protected]
with:
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/[email protected]
env:
rehldsVersion: latest
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: false
tags: |
${{ vars.DOCKER_USERNAME }}/rehlds-${{ matrix.mod }}:${{ matrix.tagName }}
# ${{ matrix.rehldsVersion == 'legacy' && format('{0}/rehlds-{1}:latest', vars.DOCKER_USERNAME, matrix.mod) || null}}
build-args: |
ReHLDS_VERSION=${{ env.rehldsVersion }}
MOD=${{ matrix.mod }}
cache-from: type=gha,scope=build-${{ matrix.mod }}-${{ matrix.mod }}
cache-to: type=gha,mode=max,scope=build-${{ matrix.mod }}-${{ matrix.mod }}