forked from hiroksarker/statuz
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 1 KB
/
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
name: publish docker images to quay.io
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: build and push watcher docker 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: ${{ env.QUAY_REGISTRY }}
quay_username: ${{ secrets.QUAY_USERNAME }}
quay_password: ${{ secrets.QUAY_PASSWORD }}
- name: build and push genie docker 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: ${{ env.QUAY_REGISTRY }}
quay_username: ${{ secrets.QUAY_USERNAME }}
quay_password: ${{ secrets.QUAY_PASSWORD }}