Skip to content

Commit

Permalink
🚀 attempt to fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Oculux314 committed Jul 16, 2024
1 parent dbfd49e commit 159d061
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
run: flyctl deploy --remote-only --config fly.production.toml --dockerfile Dockerfile.production
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STRAPI }}
deploy-frontend:
name: Deploy Frontend Prod
deploy-next:
name: Deploy Next Prod
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Fly Deploy
working-directory: ./frontend
working-directory: ./next
run: flyctl deploy --remote-only --config fly.production.toml --dockerfile Dockerfile.production
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_FRONTEND }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
run: flyctl deploy --remote-only --config fly.staging.toml --dockerfile Dockerfile.staging
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STRAPI_STAGING }}
deploy-frontend:
name: Deploy Frontend Staging
deploy-next:
name: Deploy Next Staging
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd frontend
- name: Fly Deploy
working-directory: ./frontend
working-directory: ./next
run: flyctl deploy --remote-only --config fly.staging.toml --dockerfile Dockerfile.staging
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_FRONTEND_STAGING }}
Expand Down

0 comments on commit 159d061

Please sign in to comment.