Skip to content

Commit

Permalink
ci: requiring e2e prior to release
Browse files Browse the repository at this point in the history
  • Loading branch information
andreszorro committed Jan 10, 2025
1 parent 64b3360 commit e7484b7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ on:
- 'v*'

jobs:
test-build:
uses: ./.github/workflows/test-build.yaml
permissions:
contents: write
e2e:
uses: ./.github/workflows/e2e.yaml
with:
smoke: false
test-build:
needs: e2e
uses: ./.github/workflows/test-build.yaml
permissions:
contents: write
release:
needs: test-build
runs-on: ubuntu-latest
Expand Down

0 comments on commit e7484b7

Please sign in to comment.