-
Notifications
You must be signed in to change notification settings - Fork 139
74 lines (64 loc) · 2 KB
/
publish.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
name: Publish PKI
on:
push:
branches:
- v10.13
env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }}
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
if: vars.REGISTRY != ''
build:
name: Waiting for build
needs: init
runs-on: ubuntu-latest
steps:
- name: Wait for build
uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
publish:
name: Publishing PKI
needs: [init, build]
runs-on: ubuntu-latest
steps:
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ${{ vars.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: vars.REGISTRY == 'ghcr.io'
- name: Log in to other container registry
uses: docker/login-action@v2
with:
registry: ${{ vars.REGISTRY }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
if: vars.REGISTRY != 'ghcr.io'
- name: Retrieve pki-dist image
uses: actions/cache@v3
with:
key: pki-dist-${{ github.sha }}
path: pki-dist.tar
- name: Publish pki-dist image
run: |
docker load --input pki-dist.tar
docker tag pki-dist ${{ vars.REGISTRY }}/$NAMESPACE/pki-dist:10.13
docker push ${{ vars.REGISTRY }}/$NAMESPACE/pki-dist:10.13
- name: Retrieve pki-acme image
uses: actions/cache@v3
with:
key: pki-acme-${{ github.sha }}
path: pki-acme.tar
- name: Publish pki-acme image
run: |
docker load --input pki-acme.tar
docker tag pki-acme ${{ vars.REGISTRY }}/$NAMESPACE/pki-acme:10.13
docker push ${{ vars.REGISTRY }}/$NAMESPACE/pki-acme:10.13