-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (60 loc) · 1.67 KB
/
docker.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
name: Publish Docker Image
concurrency:
group: docker-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
paths:
- '.github/workflows/**'
- 'challenge-service/**'
- 'player-service/**'
- 'game-service/**'
- 'geo-service/**'
- 'hrm-service/**'
branches:
- 'main'
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
service:
- game
- hrm
- player
- geo
- challenge
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
src:
- '.github/workflows/docker.yml'
- '${{ matrix.service }}-service/**'
- name: Set up QEMU
if: steps.changes.outputs.src == 'true'
uses: docker/setup-qemu-action@v3
with:
platforms: amd64 # we only need x86_64 arch for now.
- name: Set up Docker Buildx
if: steps.changes.outputs.src == 'true'
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
if: steps.changes.outputs.src == 'true'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
if: steps.changes.outputs.src == 'true'
uses: docker/build-push-action@v3
with:
context: ${{ matrix.service }}-service
platforms: linux/amd64
push: true
tags: macrun/${{ matrix.service }}-service:latest