Skip to content

Commit

Permalink
Remove requirement for tests to pass before deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
msschwartz21 committed Jan 29, 2025
1 parent 602e4a1 commit 24a80b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ jobs:

deploy:
name: Deploy
needs: test
if: success() && startsWith(github.ref, 'refs/tags/') && github.event_name != 'schedule'
# TODO: Add back successful test requirement once package is more stable
# needs: test
# if: success() && startsWith(github.ref, 'refs/tags/') && github.event_name != 'schedule'
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'schedule'
runs-on: ubuntu-latest

permissions:
Expand Down

0 comments on commit 24a80b3

Please sign in to comment.