diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index f1aee8c..c1cf6c6 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -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