Skip to content

[BOP-251] Generate versioned manifest in CI (#89) #77

[BOP-251] Generate versioned manifest in CI (#89)

[BOP-251] Generate versioned manifest in CI (#89) #77

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