From 27d507d36ba8894536ff2d45bed90b780e398ba9 Mon Sep 17 00:00:00 2001 From: Paul Weichhart Date: Fri, 4 Aug 2023 07:42:20 +0200 Subject: [PATCH] MOD switch to GITHUB_TOKEN --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a4cd92fb810..42c1feecf9e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: with: ref: ${{ github.head_ref }} fetch-depth: 0 - token: ${{ secrets.GH_RELEASE_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} - name: 'Get Previous tag' id: previoustag uses: "WyriHaximus/github-action-get-previous-tag@v1" @@ -51,7 +51,7 @@ jobs: configuration: ".github/workflows/changelog-configuration.json" toTag: "main" env: - GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Update Changelog uses: stefanzweifel/changelog-updater-action@v1 with: @@ -90,7 +90,7 @@ jobs: if: ${{ github.event.inputs.publish == 'true' }} uses: softprops/action-gh-release@v1 with: - token: ${{ secrets.GH_RELEASE_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} files: build/* name: ${{ needs.prepare-release.outputs.version }} tag_name: ${{ needs.prepare-release.outputs.version }}