From f53a896f09cf826d0ebd9eddcf798676c69b60c6 Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Fri, 14 Apr 2023 16:19:36 -0500 Subject: [PATCH] Stop using temporary token (#11210) --- .github/workflows/deploy-fleet-website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-fleet-website.yml b/.github/workflows/deploy-fleet-website.yml index dd770cfc82..5e33d8c908 100644 --- a/.github/workflows/deploy-fleet-website.yml +++ b/.github/workflows/deploy-fleet-website.yml @@ -81,7 +81,7 @@ jobs: - run: cd website/ && npm test # Compile browser assets & markdown content into generated collateral - - run: cd website/ && BUILD_SCRIPT_ARGS="--githubAccessToken=${{ secrets.TEMP_GITHUB_TOKEN }}" npm run build-for-prod + - run: cd website/ && BUILD_SCRIPT_ARGS="--githubAccessToken=${{ secrets.GITHUB_TOKEN }}" npm run build-for-prod # Build the go binary we use to sign APNS certificates in the website/.tools/ folder. - run: cd ee/tools/mdm/ && GOOS=linux GOARCH=amd64 go build -o ../../../website/.tools/mdm-gen-cert .