Skip to content

Commit

Permalink
Fix the FLY_TOKEN name
Browse files Browse the repository at this point in the history
  • Loading branch information
azlyth committed Feb 10, 2025
1 parent 62ae569 commit 1287bda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:
- name: Deploy Database
working-directory: db
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
FLY_API_TOKEN: ${{ secrets.FLY_TOKEN }}
run: flyctl deploy --remote-only

- name: Deploy Backend
working-directory: python-backend
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
FLY_API_TOKEN: ${{ secrets.FLY_TOKEN }}
run: |
flyctl deploy --remote-only
- name: Deploy Frontend
working-directory: frontend
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
FLY_API_TOKEN: ${{ secrets.FLY_TOKEN }}
run: flyctl deploy --remote-only

0 comments on commit 1287bda

Please sign in to comment.