Publish all Shipyard images on arm64 as well as amd64 #1273
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Release Images | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- devel | |
- release-* | |
permissions: {} | |
jobs: | |
release: | |
name: Release Images | |
if: github.repository_owner == 'submariner-io' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
submodules: true | |
- name: Build and release new images | |
uses: ./gh-actions/release-images | |
with: | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} |