From 253ee2b88783cfa4911999d01b1c8e2f8cfa0b1c Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Fri, 8 May 2026 12:33:57 -0500 Subject: [PATCH] fix(ci): install gcloud in build-deps step to avoid apt timeout at publish --- .gitea/workflows/ci-dev.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci-dev.yaml b/.gitea/workflows/ci-dev.yaml index b3071dc..f788d8b 100644 --- a/.gitea/workflows/ci-dev.yaml +++ b/.gitea/workflows/ci-dev.yaml @@ -22,7 +22,10 @@ jobs: - name: Install build dependencies run: | apt-get update -qq - apt-get install -y gcc libcurl4-openssl-dev + apt-get install -y gcc libcurl4-openssl-dev apt-transport-https ca-certificates + echo "deb [trusted=yes] https://packages.cloud.google.com/apt cloud-sdk main" \ + > /etc/apt/sources.list.d/google-cloud-sdk.list + apt-get update -qq && apt-get install -y google-cloud-cli # Seed: use the committed linux-amd64 binary as the bootstrap - name: Bootstrap from committed linux binary (seed) @@ -212,9 +215,6 @@ jobs: GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} run: | echo "${GCP_SA_KEY}" > /tmp/gcp-key.json - apt-get install -y -qq apt-transport-https ca-certificates curl - echo "deb [trusted=yes] https://packages.cloud.google.com/apt cloud-sdk main" > /etc/apt/sources.list.d/google-cloud-sdk.list - apt-get update -qq && apt-get install -y google-cloud-cli gcloud auth activate-service-account --key-file=/tmp/gcp-key.json gcloud config set project neuron-785695 -- 2.52.0