From 78d2ce7bdab158582dadef43994f4787771f2432 Mon Sep 17 00:00:00 2001 From: gbhu753 Date: Wed, 17 Jul 2024 23:14:34 +1200 Subject: [PATCH] Fix: Deployment workflows --- .github/workflows/deploy.production.yml | 4 ++-- .github/workflows/deploy.staging.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.production.yml b/.github/workflows/deploy.production.yml index f3d426a..98280f6 100644 --- a/.github/workflows/deploy.production.yml +++ b/.github/workflows/deploy.production.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - uses: superfly/flyctl-actions/setup-flyctl@master - run: flyctl deploy --remote-only --config fly.production.toml - working-directory: ./web + working-directory: ./frontend env: FLY_API_TOKEN: ${{ secrets.FLY_WEB_PRODUCTION_API_TOKEN }} @@ -21,6 +21,6 @@ jobs: - uses: actions/checkout@v3 - uses: superfly/flyctl-actions/setup-flyctl@master - run: flyctl deploy --remote-only --config fly.production.toml - working-directory: ./api + working-directory: ./backend env: FLY_API_TOKEN: ${{ secrets.FLY_API_PRODUCTION_API_TOKEN }} diff --git a/.github/workflows/deploy.staging.yml b/.github/workflows/deploy.staging.yml index a9af824..384a2d6 100644 --- a/.github/workflows/deploy.staging.yml +++ b/.github/workflows/deploy.staging.yml @@ -24,6 +24,6 @@ jobs: - uses: actions/checkout@v3 - uses: superfly/flyctl-actions/setup-flyctl@master - run: flyctl deploy --remote-only --config fly.staging.toml - working-directory: ./api + working-directory: ./backend env: FLY_API_TOKEN: ${{ secrets.FLY_API_STAGING_API_TOKEN }}