diff --git a/.github/workflows/deploy-prod.yaml b/.github/workflows/deploy-prod.yaml index b210564..a678d72 100644 --- a/.github/workflows/deploy-prod.yaml +++ b/.github/workflows/deploy-prod.yaml @@ -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 }} diff --git a/.github/workflows/deploy-staging.yaml b/.github/workflows/deploy-staging.yaml index c4a897a..c16be5d 100644 --- a/.github/workflows/deploy-staging.yaml +++ b/.github/workflows/deploy-staging.yaml @@ -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 }}