[BOP-251] Publish the manifest in CI #398
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
types: ['opened', 'reopened', 'synchronize'] | |
branches: [ "main" ] | |
paths: | |
- '**' # all files otherwise excludes wont work | |
- '!**/**/*.md' # ignore markdown files | |
- '!demo/**' # ignore demos folder | |
- '!sample/**' # ignore samples folder | |
- '!example/**' # ignore examples folder | |
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') }} # when all `needs` jobs are successful | |
needs: [ vet, test, build ] | |
uses: ./.github/workflows/e2e.yml | |
cleanup: | |
if: ${{ always() }} | |
needs: [vet, test, e2e, build] | |
secrets: inherit | |
uses: ./.github/workflows/cleanup.yml |