From 440633f278c25a36295cbd16144921809cacc00e Mon Sep 17 00:00:00 2001 From: Will Crichton Date: Thu, 29 Aug 2024 17:40:25 -0700 Subject: [PATCH] Fix zone in pre-release --- .github/workflows/pre-release.yml | 2 +- .github/workflows/run-on-remote/action.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 0f0a054ee..47d9e4bc2 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -66,7 +66,7 @@ jobs: with: version: '>= 412.0.0' - name: Upload artifacts - run: gcloud compute scp artifacts.zip gh-actions@aquascope:~/ --zone us-central1-a --tunnel-through-iap + run: gcloud compute scp artifacts.zip gh-actions@aquascope:~/ --zone us-central1-c --tunnel-through-iap update-frontend: needs: build-backend diff --git a/.github/workflows/run-on-remote/action.yml b/.github/workflows/run-on-remote/action.yml index 745805674..def6765b7 100644 --- a/.github/workflows/run-on-remote/action.yml +++ b/.github/workflows/run-on-remote/action.yml @@ -21,12 +21,12 @@ runs: with: version: '>= 412.0.0' - name: Copy to server - run: gcloud compute scp ./${{ inputs.file }} gh-actions@aquascope:~/${{ inputs.file }} --zone us-central1-a --tunnel-through-iap + run: gcloud compute scp ./${{ inputs.file }} gh-actions@aquascope:~/${{ inputs.file }} --zone us-central1-c --tunnel-through-iap shell: bash - name: Make executable uses: google-github-actions/ssh-compute@v0 with: - zone: 'us-central1-a' + zone: 'us-central1-c' project_id: ${{ inputs.project-id }} ssh_private_key: ${{ inputs.ssh-key }} instance_name: aquascope @@ -35,7 +35,7 @@ runs: - name: Execute script uses: google-github-actions/ssh-compute@v0 with: - zone: 'us-central1-a' + zone: 'us-central1-c' project_id: ${{ inputs.project-id }} ssh_private_key: ${{ inputs.ssh-key }} instance_name: aquascope