From 6bec5a2c9ea32943a0bdb726da831dec954deecb Mon Sep 17 00:00:00 2001 From: Mike Miller <87874+mikeage@users.noreply.github.com> Date: Fri, 25 Oct 2024 11:27:11 +0300 Subject: [PATCH] Use a PAT to create releases and tags (#59) --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5cdebe5..6a05118b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -478,14 +478,13 @@ jobs: - name: Publish uses: softprops/action-gh-release@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: body: ${{ steps.changelog.outputs.changelog }} prerelease: ${{ needs.configuration.outputs.prerelease }} target_commitish: ${{ needs.configuration.outputs.currentrelease }} tag_name: ${{ needs.configuration.outputs.version }} files: releases/* + token: ${{ secrets.RELEASE_TOKEN }} publish_gitbook: name: Publish changelog from last major build to open-blocks-docs