Skip to content

Commit

Permalink
in staging-release: run prerelease after tests but ignore result
Browse files Browse the repository at this point in the history
  • Loading branch information
erratic-pattern committed Feb 14, 2023
1 parent 80b7932 commit ced4ebb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/staging-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ jobs:

make-prerelease:
name: Make Pre-Release
needs: [create-release, test-release]
runs-on: ubuntu-latest
needs: [create-release, build-release, test-release]
# run after tests but ignore if they fail
if: always() && needs.build-release.result == 'success'
permissions:
contents: write
steps:
Expand Down

0 comments on commit ced4ebb

Please sign in to comment.