Browse Source

fix: use GITHUB_TOKEN

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
pull/1308/head
Wing-Kam Wong 3 years ago
parent
commit
c9f47ec01c
  1. 4
      .github/workflows/release-draft.yml

4
.github/workflows/release-draft.yml

@ -29,7 +29,7 @@ jobs:
- name: Create tag
uses: actions/github-script@v3
with:
github-token: ${{ secrets.GH_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.git.createRef({
owner: context.repo.owner,
@ -45,4 +45,4 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: "npx github-release-notes@0.17.2 release --token ${{ secrets.GH_TOKEN }} --draft --tags ${{ github.event.inputs.tag || inputs.tag }}..${{ github.event.inputs.prev_tag || inputs.prev_tag }}"
- run: "npx github-release-notes@0.17.2 release --token ${{ secrets.GITHUB_TOKEN }} --draft --tags ${{ github.event.inputs.tag || inputs.tag }}..${{ github.event.inputs.prev_tag || inputs.prev_tag }}"

Loading…
Cancel
Save