From 85098e74f90cc1c27df778ee07ec7220c2d81aab Mon Sep 17 00:00:00 2001 From: David Boreham Date: Sat, 27 Jul 2024 20:37:37 -0600 Subject: [PATCH] Add github access token --- .gitea/workflows/publish-mainnet-laconicd-images.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/publish-mainnet-laconicd-images.yml b/.gitea/workflows/publish-mainnet-laconicd-images.yml index 69eeea3..9a1ef2d 100644 --- a/.gitea/workflows/publish-mainnet-laconicd-images.yml +++ b/.gitea/workflows/publish-mainnet-laconicd-images.yml @@ -35,6 +35,12 @@ jobs: run: python3 --version - name: "Install stack orchestrator" run: ./scripts/install-so.sh + # Some of the stack's github repos are still private, so acquire an auth token for git here + - name: "Set Github access token" + env: + TOKEN: ${{ secrets.CICD_GITHUB_REPO_TOKEN }} + run: | + git config --global url."https://$TOKEN:@github.com/".insteadOf https://github.com/ - name: "Build containers" run: | PATH=$PATH:~/bin