feat: multiarch oci image #178
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: Protected Branches | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- release-* | ||
push: | ||
branches: | ||
- main | ||
- release-* | ||
schedule: | ||
- cron: '0 8 * * 2' | ||
concurrency: | ||
group: ${{ github.ref == 'refs/heads/main' && format('ignore-main-{0}', github.run_id) || format('{0}-{1}', github.workflow, github.ref_name) }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
uses: ./.github/workflows/build-rock.yaml | ||
Check failure on line 22 in .github/workflows/main.yaml GitHub Actions / .github/workflows/main.yamlInvalid workflow file
|
||
scan: | ||
needs: build | ||
uses: ./.github/workflows/scan-rock.yaml | ||
integration-tests: | ||
needs: build | ||
uses: ./.github/workflows/integration-tests.yaml | ||
publish: | ||
if: github.ref_name == 'main' || startsWith(github.ref_name, 'release-') | ||
needs: [scan, build, integration-tests] | ||
uses: ./.github/workflows/publish-rock.yaml |