Skip to content

Commit

Permalink
fix: Rename release script name
Browse files Browse the repository at this point in the history
  • Loading branch information
diego3g committed May 28, 2021
1 parent a4ecda3 commit ce946e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- uses: bahmutov/npm-install@v1
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
run: yarn publish
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release

publish_on_mac:
runs-on: macos-latest
Expand All @@ -29,8 +29,8 @@ jobs:
- uses: bahmutov/npm-install@v1
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
run: yarn publish
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release

publish_on_win:
runs-on: windows-latest
Expand All @@ -42,5 +42,5 @@ jobs:
- uses: bahmutov/npm-install@v1
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
run: yarn publish
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish"
"release": "electron-forge publish"
},
"keywords": [
"webcam",
Expand Down

0 comments on commit ce946e2

Please sign in to comment.