Skip to content

Commit

Permalink
makes deploy only dependent on build
Browse files Browse the repository at this point in the history
  • Loading branch information
zapbampow committed May 3, 2023
1 parent 0a8a5f3 commit 1b05fa0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/fly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ jobs:
deploy:
name: 🚀 Deploy
runs-on: ubuntu-latest
needs: [lint, typecheck, vitest, cypress, build]
# needs: [lint, typecheck, vitest, cypress, build]
needs: [build]
# only build/deploy main branch on pushes
if: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }}

Expand Down

0 comments on commit 1b05fa0

Please sign in to comment.