Skip to content

Commit

Permalink
Rename yarn release command
Browse files Browse the repository at this point in the history
  • Loading branch information
dabbott committed Aug 22, 2021
1 parent a87f752 commit 1448c49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v*'

jobs:
publish:
release:
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -19,6 +19,6 @@ jobs:
with:
node-version: 14.17
- run: yarn
- run: yarn publish:desktop
- run: yarn release:desktop
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"start": "PORT=1234 modular start app",
"build": "modular build app",
"build:desktop": "cd ./packages/noya-desktop && yarn make",
"publish:desktop": "cd ./packages/noya-desktop && yarn publish",
"release:desktop": "cd ./packages/noya-desktop && yarn release",
"test": "modular test",
"test:clean": "JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE=1 yarn test --reporters=default --reporters=jest-image-snapshot/src/outdated-snapshot-reporter.js",
"lint": "eslint . --ext .js,.ts,.tsx",
Expand Down
2 changes: 1 addition & 1 deletion packages/noya-desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"release": "electron-forge publish",
"clean": "rm -rf .webpack out"
},
"keywords": [],
Expand Down

0 comments on commit 1448c49

Please sign in to comment.