Skip to content

Commit

Permalink
fix: deploy depends on push
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrising committed Apr 6, 2024
1 parent 123a708 commit 4bf4a15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

deploy:
runs-on: ubuntu-latest
needs: [test]
needs: [docker-push]
defaults:
run:
working-directory: ./server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

deploy:
runs-on: ubuntu-latest
needs: [test]
needs: [docker-push]
defaults:
run:
working-directory: ./server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:

deploy:
runs-on: ubuntu-latest
needs: [test]
needs: [test, docker-push]
defaults:
run:
working-directory: ./server
Expand Down

0 comments on commit 4bf4a15

Please sign in to comment.