Create await-node-ready binary and add to gateway and route-agent images #12
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: | |
fetch-depth: 0 | |
- name: Build and release new images | |
uses: submariner-io/shipyard/gh-actions/release-images@devel | |
with: | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} |