Skip to content

[BOP-1364] use json instead of string for addon values (#96) #83

[BOP-1364] use json instead of string for addon values (#96)

[BOP-1364] use json instead of string for addon values (#96) #83

Workflow file for this run

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