diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f4e76b..82534be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: id: create_release uses: actions/create-release@v1.0.0 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_ACTIONS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} @@ -37,7 +37,7 @@ jobs: id: upload-release-asset uses: actions/upload-release-asset@v1.0.1 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_ACTIONS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps asset_path: github-actions-exporter