try github_token
Some checks failed
Test / Run unit tests (pull_request) Failing after 47s
Test / Run integration tests (pull_request) Failing after 29s

This commit is contained in:
Roy Crihfield 2023-07-07 13:30:58 +08:00
parent fbf6846791
commit 49c0ce8d5d

View File

@ -39,10 +39,12 @@ jobs:
# These images need access tokens configured
- name: "Build docker image"
env:
TOKEN: ${{ secrets.CI_ACCESS_TOKEN }} # FIXME
TOKEN: ${{ secrets.GITHUB_TOKEN }} # FIXME
run: |
docker build ./plugeth-statediff -t "cerc/plugeth-statediff:local" --build-arg GITEA_TOKEN="$TOKEN"
docker build ./plugeth -t "cerc/plugeth:local" --build-arg GITEA_TOKEN="$TOKEN"
docker build ./plugeth-statediff -t cerc/plugeth-statediff:local \
--build-arg GIT_VDBTO_TOKEN="$TOKEN"
docker build ./plugeth -t cerc/plugeth:local \
--build-arg GIT_VDBTO_TOKEN="$TOKEN"
- name: "Install stack-orchestrator"
uses: actions/checkout@v3