From 8b60e76f2877c515538955f0bb87a998dc5ea0c6 Mon Sep 17 00:00:00 2001 From: Theodor Kvalsvik Lauritzen Date: Thu, 5 Sep 2024 14:44:58 +0200 Subject: [PATCH] fix: Add GH_TOKEN env var to a step in the LSP deploy action --- .github/workflows/lspDeploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lspDeploy.yml b/.github/workflows/lspDeploy.yml index 2496b99fe85c..aebbb51e9a6d 100644 --- a/.github/workflows/lspDeploy.yml +++ b/.github/workflows/lspDeploy.yml @@ -42,6 +42,8 @@ jobs: - name: "Retrieve version" id: retrieve_version working-directory: ./integration/schema-language-server/utils + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: python3 updateVersion.py ${{ github.event.inputs.version }} >> $GITHUB_OUTPUT - name: Download node dependencies