-
-
Notifications
You must be signed in to change notification settings - Fork 1
194 lines (174 loc) · 6 KB
/
beta.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
name: Publish Beta Docker Images 🐋 📦
on:
push:
branches:
- beta
jobs:
build:
name: Build Beta Docker Image 🐳
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
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 Docker Image 🐳
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: false
load: true
tags: jives/hlds:${{ matrix.game }}-beta
build-args: |
GAME=${{ env.GAME }}
FLAG=${{ env.FLAG }}
IMAGE=jives/hlds:${{ matrix.game }}-beta
VERSION=beta
- name: Get Docker Image ID 🆔
id: get_image_id
run: echo "image_id=$(docker images -q | head -n 1)" >> $GITHUB_ENV
- name: Add Custom Mod Content 📂
run: |
mkdir -p ./mods/decay
touch ./mods/decay/plugin.ini
- name: Add Configuration 📂
run: |
mkdir -p ./config
mkdir -p ./config/maps
touch ./config/test.cfg
touch ./config/maps/crazytank.bsp
- name: Run Docker Container 🐳
run: |
docker run -d -ti \
--name hlds \
-v "./config:/temp/config" \
-v "./mods:/temp/mods" \
-p 27015:27015/udp \
-p 27015:27015 \
-p 26900:26900/udp \
-e GAME=${GAME} \
${{ env.image_id }} \
"+log on +rcon_password changeme +maxplayers 12"
sleep 5
- name: Validate Directory Mappings 📂
run: |
# Check if plugin.ini exists in the decay directory
if [ "$(docker exec hlds ls /opt/steam/hlds/decay | grep -c 'plugin.ini')" -eq 0 ]; then
echo "plugin.ini file is missing in the decay directory!"
exit 1
fi
# Check if test.cfg exists in the game directory
if [ "$(docker exec hlds ls /opt/steam/hlds/${{ env.GAME }} | grep -c 'test.cfg')" -eq 0 ]; then
echo "test.cfg file is missing in the ${{ env.GAME }} directory!"
exit 1
fi
# Check if crazytank.bsp exists in the maps directory
if [ "$(docker exec hlds ls /opt/steam/hlds/${{ env.GAME }}/maps | grep -c 'crazytank.bsp')" -eq 0 ]; then
echo "crazytank.bsp file is missing in the maps directory!"
exit 1
fi
echo "Volume mappings work as expectected!"
- name: Validate Game Data Is Available 📂
run: |
GAME_NAME=$(echo "${{ env.GAME }}" | sed 's/-legacy//')
if [ "$(docker exec hlds ls /opt/steam/hlds | grep -c "$GAME_NAME")" -eq 0 ]; then
echo "$GAME_NAME directory is missing!"
exit 1
fi
- 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: |
REPO_OWNER=$(echo ${{ github.repository_owner }} | awk '{print tolower($0)}')
echo "repo_owner=$REPO_OWNER" >> $GITHUB_ENV
- 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/${{ env.repo_owner }}/hlds:${{ matrix.game }}-beta
with:
context: ./container
push: true
tags: ghcr.io/${{ env.repo_owner }}/hlds:${{ matrix.game }}-beta
build-args: |
GAME=${{ env.GAME }}
FLAG=${{ env.FLAG }}
VERSION=beta
IMAGE=ghcr.io/${{ env.repo_owner }}/hlds:${{ matrix.game }}-beta
- name: Cleanup 🧹
if: always()
run: |
docker stop hlds
docker rm hlds
docker system prune --all --force