Skip to content

Commit

Permalink
fixed working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwillmcleod committed Feb 4, 2024
1 parent 4d4ff11 commit f006766
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 @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd /strapi
- run: cd strapi
- run: flyctl deploy --remote-only --config fly.production.toml --dockerfile Dockerfile.production
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STRAPI }}
Expand All @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd /frontend
- run: cd frontend
- run: flyctl deploy --remote-only --config fly.production.toml --dockerfile Dockerfile.production
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_FRONTEND }}
Expand All @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd /storage
- run: cd storage
- run: flyctl deploy --remote-only --config fly.production.toml --dockerfile Dockerfile.production
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STORAGE }}
6 changes: 3 additions & 3 deletions .github/workflows/deploy-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd /strapi
- run: cd strapi
- run: flyctl deploy --remote-only --config fly.staging.toml --dockerfile Dockerfile.staging
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STRAPI_STAGING }}
Expand All @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd /frontend
- run: cd frontend
- run: flyctl deploy --remote-only --config fly.staging.toml --dockerfile Dockerfile.staging
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_FRONTEND_STAGING }}
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: cd /storage
- run: cd storage
- run: flyctl deploy --remote-only --config fly.staging.toml --dockerfile Dockerfile.staging
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN_STORAGE_STAGING }}

0 comments on commit f006766

Please sign in to comment.