-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (44 loc) · 1.21 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
name: Docker Image CI
on:
push:
branches: [ master ]
paths-ignore:
- "**.md"
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
env:
DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/hlds
DOCKER_PLATFORMS: linux/amd64
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
branch: [steam_legacy, latest]
include:
- branch: steam_legacy
build-args: APPBRANCH=steam_legacy
- branch: latest
build-args: APPBRANCH=
steps:
- uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Log in to Docker Hub
if: github.ref == 'refs/heads/master'
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
if: github.ref == 'refs/heads/master'
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile
platforms: ${{ env.DOCKER_PLATFORMS }}
push: true
tags: ${{ env.DOCKER_IMAGE }}:${{ matrix.branch }}
build-args: ${{ matrix.build-args }}