Skip to content

Commit

Permalink
Use personal token in make_release (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFlamm authored Nov 3, 2020
1 parent b4b138d commit f7c9029
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
dry_run: true
bump: patch
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.REPO_SCOPED_TOKEN }}
- run: echo "${{ steps.next_version.outputs.version }}" > version
- run: echo "${{ steps.next_version.outputs.version }}"
- run: |
Expand All @@ -25,13 +25,13 @@ jobs:
echo ::set-output name=sha::$(git rev-parse HEAD)
- uses: zwaldowski/semver-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.REPO_SCOPED_TOKEN }}
sha: ${{ steps.git_commit.outputs.sha }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.next_version.outputs.version }}
release_name: Release ${{ steps.next_version.outputs.version }}
Expand Down

0 comments on commit f7c9029

Please sign in to comment.