From 37460cca63b263b8ab0aad945ea41e0b0ccf6830 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 16 Jul 2024 20:44:44 -0400 Subject: [PATCH] Cleanup how app token is generated --- .github/workflows/stable-merge.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/stable-merge.yml b/.github/workflows/stable-merge.yml index 6df3e94631..11f6cda41f 100644 --- a/.github/workflows/stable-merge.yml +++ b/.github/workflows/stable-merge.yml @@ -26,13 +26,10 @@ jobs: cd temp_workspace dotnet build -c Release -p:TGS_HOST_NO_WEBPANEL=true tools/Tgstation.Server.ReleaseNotes/Tgstation.Server.ReleaseNotes.csproj - - name: Run ReleaseNotes Create CI Completion Check + - name: Generate App Token run: | cd temp_workspace dotnet run -c Release --no-build --project tools/Tgstation.Server.ReleaseNotes --token-output-file ${{ runner.temp }}/installation_secret.txt ${{ secrets.TGS_CI_GITHUB_APP_TOKEN_BASE64 }} - - - name: Load Installation Token into Envvar - run: | echo "INSTALLATION_TOKEN=$(cat ${{ runner.temp }}/installation_secret.txt)" >> $GITHUB_ENV rm ${{ runner.temp }}/installation_secret.txt