From 6586973b60653ac52e4fc81fcd42df42cb367e3d Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn Date: Fri, 21 Jul 2023 17:09:57 +0900 Subject: [PATCH] Expose the GITHUB_SECRET to the frontend build step --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6bd3941d..8a9ad248f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,8 @@ jobs: - name: Build run: npm run build working-directory: ${{ matrix.node }}/${{ matrix.flavor }}/backend + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} frontend: if: "!contains(github.event.pull_request.labels.*.name, 'ops') && !contains(github.head_ref, 'ops/')"