-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (63 loc) · 2.18 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
70
71
72
name: Publish the artifacts and fund-accounts images
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- 'v*'
env:
REGISTRY: ghcr.io
IMAGE_PATH: ghcr.io/${{ github.repository }}
jobs:
push-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for artifacts image
id: artifacts_meta
uses: docker/[email protected]
with:
images: ${{ env.IMAGE_PATH }}/artifacts
tags: |
# Add a version tag when a valid semver tag is pushed.
type=semver,pattern={{version}}
# Add the edge tag to every image to represent the latest commit to main
type=raw,value=edge,enable={{is_default_branch}}
- name: Build and push artifacts image
uses: docker/[email protected]
with:
context: .
file: Dockerfile.nginx
push: true
tags: ${{ steps.artifacts_meta.outputs.tags }}
labels: ${{ steps.artifacts_meta.outputs.labels }}
- name: Extract metadata (tags, labels) for fund-accounts image
id: fund_accounts_meta
uses: docker/[email protected]
with:
images: ${{ env.IMAGE_PATH }}/fund-accounts
tags: |
# Add a version tag when a valid semver tag is pushed.
type=semver,pattern={{version}}
# Add the edge tag to every image to represent the latest commit to main
type=raw,value=edge,enable={{is_default_branch}}
- name: Build and push fund-accounts image
uses: docker/[email protected]
with:
context: .
file: Dockerfile.fund-accounts
push: true
tags: ${{ steps.fund_accounts_meta.outputs.tags }}
labels: ${{ steps.fund_accounts_meta.outputs.labels }}