Skip to content

Commit e054f5b

Browse files
committed
Fix GitHub Releases deployment command
1 parent 44d5e2d commit e054f5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: deploy
33
on:
44
push:
55
tags:
6-
- '*.*.*'
6+
- "*.*.*"
77

88
env:
99
OWNER: scala
@@ -41,7 +41,7 @@ jobs:
4141
run: yarn vscode:publish --pat ${{ secrets.VS_MARKETPLACE_TOKEN }}
4242

4343
- name: Generate GitHub Release notes
44-
run: yarn run github-changes --owner $OWNER --repository $REPOSITORY --branch $RELEASE_BRANCH --no-merges --title "Changelog" --for-tag ${GITHUB_REF#refs/*/} --file release-notes.md
44+
run: yarn run github-changes --token ${{ secrets.GITHUB_TOKEN }} --owner $OWNER --repository $REPOSITORY --branch $RELEASE_BRANCH --no-merges --title "Changelog" --for-tag ${GITHUB_REF#refs/*/} --file release-notes.md
4545
- name: Create GitHub Release
4646
id: create-release
4747
uses: actions/create-release@v1

0 commit comments

Comments
 (0)