Add github access token

This commit is contained in:
David Boreham 2024-07-27 20:37:37 -06:00
parent 7e7967f366
commit 85098e74f9

View File

@ -35,6 +35,12 @@ jobs:
run: python3 --version run: python3 --version
- name: "Install stack orchestrator" - name: "Install stack orchestrator"
run: ./scripts/install-so.sh 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" - name: "Build containers"
run: | run: |
PATH=$PATH:~/bin PATH=$PATH:~/bin