[BOP-1364] use json instead of string for addon values (#96) #83
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: Merge | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
vet: | |
uses: ./.github/workflows/vet.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
build: | |
uses: ./.github/workflows/build.yml | |
e2e: | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} # if all `needs` jobs are successful | |
needs: [ vet, test, build ] | |
uses: ./.github/workflows/e2e.yml | |
push-to-ghcr: | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} # if all `needs` jobs are successful | |
needs: [vet, test, e2e, build] | |
secrets: inherit | |
uses: ./.github/workflows/push-to-ghcr.yml | |
push-manifest: | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} # if all `needs` jobs are successful | |
needs: [vet, test, e2e, build] | |
secrets: inherit | |
uses: ./.github/workflows/push-manifest.yml | |
cleanup: | |
needs: [vet, test, e2e, build, push-to-ghcr] | |
secrets: inherit | |
uses: ./.github/workflows/cleanup.yml |