Skip to content

using composite workflow #1

using composite workflow

using composite workflow #1

Workflow file for this run

name: publish docker image to quay.io
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build and push image
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: build and push watcher docker image to quay.io
uses: statuzproj/actions/quay-multi-arch@main
with:
service_name: watcher
tag: ${{ github.ref_name }}
quay_registry: ${{ vars.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
tag: ${{ github.ref_name }}
quay_registry: ${{ vars.QUAY_REGISTRY }}
quay_username: ${{ secrets.QUAY_USERNAME }}
quay_password: ${{ secrets.QUAY_PASSWORD }}