-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (62 loc) · 2.2 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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: [
{ slug: valve, tagName: legacy },
{ slug: valve, tagName: bugfixedhl },
{ slug: cstrike, tagName: legacy },
{ slug: cstrike, tagName: regamedll },
{ slug: czero, tagName: legacy },
{ slug: czero, tagName: regamedll },
{ slug: dod, tagName: legacy },
{ slug: gearbox, tagName: legacy },
{ slug: tfc, tagName: legacy },
{ slug: ricochet, tagName: legacy },
{ slug: dmc, tagName: legacy },
]
env:
isMasterBranch: ${{ github.ref_name == github.event.repository.default_branch && false }}
steps:
- uses: actions/[email protected]
- uses: docker/[email protected]
- name: Log in to Docker Hub
if: ${{ env.isMasterBranch }}
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
modName: ${{ matrix.mod.slug }}
tag: ${{ matrix.mod.tagName }}
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: ${{ env.isMasterBranch }}
tags: |
${{ vars.DOCKER_USERNAME }}/rehlds-${{ env.modName }}:${{ env.tag }}
${{ env.tag == 'legacy' && format('{0}/rehlds-{1}:latest', vars.DOCKER_USERNAME, env.modName) || null}}
build-args: |
MOD=${{ env.modName }}
ReHLDS_VERSION=${{ env.rehldsVersion }}
${{ env.tag != 'legacy' && 'ReGameDLL_VERSION=latest' || '' }}
${{ env.tag == 'legacy' && 'BugfixedHL_LINK=' || ''}}
cache-from: type=gha,scope=build-${{ env.modName }}-${{ env.tag }}
cache-to: type=gha,mode=max,scope=build-${{ env.modName }}-${{ env.tag }}