diff --git a/.github/workflows/fly-app.yml b/.github/workflows/fly-app.yml index 3575eb0be..2a164bf68 100644 --- a/.github/workflows/fly-app.yml +++ b/.github/workflows/fly-app.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: superfly/flyctl-actions/setup-flyctl@master - - run: flyctl deploy --app "$APP_NAME" --depot + - run: flyctl deploy --app "$APP_NAME" --remote-only env: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} APP_NAME: ${{ secrets.APP_NAME }} diff --git a/.github/workflows/fly-core.yml b/.github/workflows/fly-core.yml index 77a18c443..4c16036ce 100644 --- a/.github/workflows/fly-core.yml +++ b/.github/workflows/fly-core.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: superfly/flyctl-actions/setup-flyctl@master - - run: flyctl deploy --app "$APP_NAME" --config ./fly/fly.core.toml --depot + - run: flyctl deploy --app "$APP_NAME" --config ./fly/fly.core.toml --remote-only env: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} APP_NAME: ${{ secrets.APP_NAME }} diff --git a/.github/workflows/fly-custom.yml b/.github/workflows/fly-custom.yml index 0d610b98c..6ff917303 100644 --- a/.github/workflows/fly-custom.yml +++ b/.github/workflows/fly-custom.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: superfly/flyctl-actions/setup-flyctl@master - - run: flyctl deploy --app "$APP_NAME"-db --config ./fly/fly.custom.toml --depot + - run: flyctl deploy --app "$APP_NAME"-db --config ./fly/fly.custom.toml --remote-only env: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} APP_NAME: ${{ secrets.APP_NAME }} diff --git a/.github/workflows/fly-home.yml b/.github/workflows/fly-home.yml index eb7183b51..e5e5b78e5 100644 --- a/.github/workflows/fly-home.yml +++ b/.github/workflows/fly-home.yml @@ -15,6 +15,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: superfly/flyctl-actions/setup-flyctl@master - - run: flyctl deploy --config ./fly/fly.home.toml --depot + - run: flyctl deploy --config ./fly/fly.home.toml --remote-only env: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}