From 795af015afb1bd269a2f6890a6d461a3a571fde6 Mon Sep 17 00:00:00 2001 From: Archi Date: Fri, 21 May 2021 01:05:59 +0200 Subject: [PATCH] CI: Supply STD token to docker-ci This allows to verify that STD plugin also builds, normally we skip it when token is not provided (for a reason) --- .github/workflows/docker-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index 4bc954bdf..ac61b64fd 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -23,6 +23,7 @@ jobs: with: context: . platforms: ${{ env.PLATFORMS }} + build-args: STEAM_TOKEN_DUMPER_TOKEN=${{ secrets.STEAM_TOKEN_DUMPER_TOKEN }} - name: Build Docker image from Dockerfile.Service uses: docker/build-push-action@v2 @@ -30,3 +31,4 @@ jobs: context: . file: Dockerfile.Service platforms: ${{ env.PLATFORMS }} + build-args: STEAM_TOKEN_DUMPER_TOKEN=${{ secrets.STEAM_TOKEN_DUMPER_TOKEN }}