-
Notifications
You must be signed in to change notification settings - Fork 6
122 lines (109 loc) · 4.04 KB
/
push-siren.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
name: Cat Siren Push
on:
workflow_dispatch:
push:
paths:
- 'siren/**'
- '.github/workflows/push-siren.yml'
jobs:
cat-siren:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
-
name: Set Environment Variables
run: |
IMG=cat-siren
echo "::set-env name=BUILD_VER::1.0.$GITHUB_RUN_NUMBER"
echo "::set-env name=IMG::${IMG}"
echo "::set-env name=IMAGE::ghcr.io/${{ github.repository_owner }}/${IMG}"
echo "::set-env name=BUILD_DATE::$(date +'%Y-%m-%d %H:%M:%S')"
echo "::set-env name=GIT_SHA::$(echo ${{ github.sha }} | cut -c1-7)"
echo "::set-env name=GIT_REF::$(git symbolic-ref -q --short HEAD || git describe --tags --exact-match)"
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Docker build and push
uses: docker/build-push-action@v2
with:
context: ./siren
file: ./siren/Dockerfile
labels: |
org.opencontainers.image.authors=${{ github.repository_owner }}
org.opencontainers.image.created=${{ env.BUILD_DATE }}
org.opencontainers.image.description=Created from commit ${{ env.GIT_SHA }} and ref ${{ env.GIT_REF }}
org.opencontainers.image.ref.name=${{ env.GIT_REF }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.source=https://github.com/${{ github.repository }}
org.opencontainers.image.version=${{ env.BUILD_VER }}
tags: |
${{ env.IMAGE }}:latest
${{ env.IMAGE }}:${{ env.GIT_REF }}
${{ env.IMAGE }}:${{ env.GIT_SHA }}
${{ env.IMAGE }}:${{ env.BUILD_VER }}
push: true
secrets: |
GIT_AUTH_TOKEN=${{ secrets.DOCKER_PASSWORD }}
cat-siren-debug:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
-
name: Set Environment Variables
run: |
IMG=cat-siren-debug
echo "::set-env name=BUILD_VER::1.0.$GITHUB_RUN_NUMBER"
echo "::set-env name=IMG::${IMG}"
echo "::set-env name=IMAGE::ghcr.io/${{ github.repository_owner }}/${IMG}"
echo "::set-env name=BUILD_DATE::$(date +'%Y-%m-%d %H:%M:%S')"
echo "::set-env name=GIT_SHA::$(echo ${{ github.sha }} | cut -c1-7)"
echo "::set-env name=GIT_REF::$(git symbolic-ref -q --short HEAD || git describe --tags --exact-match)"
-
name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
image: tonistiigi/binfmt:latest
platforms: all
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Docker build and push
uses: docker/build-push-action@v2
with:
context: ./siren
file: ./siren/Dockerfile.debug
labels: |
org.opencontainers.image.authors=${{ github.repository_owner }}
org.opencontainers.image.created=${{ env.BUILD_DATE }}
org.opencontainers.image.description=Created from commit ${{ env.GIT_SHA }} and ref ${{ env.GIT_REF }}
org.opencontainers.image.ref.name=${{ env.GIT_REF }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.source=https://github.com/${{ github.repository }}
org.opencontainers.image.version=${{ env.BUILD_VER }}
tags: |
${{ env.IMAGE }}:latest
${{ env.IMAGE }}:${{ env.GIT_REF }}
${{ env.IMAGE }}:${{ env.GIT_SHA }}
${{ env.IMAGE }}:${{ env.BUILD_VER }}
push: true
secrets: |
GIT_AUTH_TOKEN=${{ secrets.DOCKER_PASSWORD }}