forked from hiroksarker/statuz
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 1.16 KB
/
unstable_release.yaml
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
name: release docker images
on:
push:
tags:
- 'v*'
jobs:
build:
name: release docker images
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- linux/386
- linux/amd64
- linux/arm/v6
- linux/arm/v7
- linux/arm64/v8
steps:
- name: Checkout
uses: actions/checkout@v4
- name: release watcher image to quay.io
uses: statuzproj/actions/quay-multi-arch@main
with:
service_name: watcher
dockerfile_path: svc/watcher/Dockerfile
tag: ${{ github.ref_name }}
quay_registry: ${{ vars.QUAY_REGISTRY }}
quay_username: ${{ secrets.QUAY_USERNAME }}
quay_password: ${{ secrets.QUAY_PASSWORD }}
- name: release genie image to quay.io
uses: statuzproj/actions/quay-multi-arch@main
with:
service_name: genie
dockerfile_path: svc/genie/Dockerfile
tag: ${{ github.ref_name }}
quay_registry: ${{ vars.QUAY_REGISTRY }}
quay_username: ${{ secrets.QUAY_USERNAME }}
quay_password: ${{ secrets.QUAY_PASSWORD }}