Skip to content

Commit

Permalink
Fix Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
beachtom committed Feb 17, 2023
1 parent 14d0289 commit 77dcc84
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
- run: npm install -g npm@latest
- run: npm ci
- run: npm version ${{ github.event.release.tag_name }} --git-tag-version false
- run: npm login
- run: npm run build-publish-repo
- uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"build-release": "npm run build-wasm-release && npm run build-api",
"build-debug": "npm run build-wasm-debug && npm run build-api",
"publish-repo": "npm run set-version && cd dist && npm publish",
"build-publish-repo": "npm run build-release && cd dist && npm publish",
"build-publish-repo": "npm run build-release && cpy ./.npmrc ./dist && cd dist && npm publish",
"copy-to-dist": "make-dir dist && cpy \"src/wasm/build/*.js\" dist && cpy \"src/wasm/build/*.wasm\" dist ",
"copy-debug-to-dist": "make-dir dist && cpy \"src/wasm/build_debug/*.js\" dist && cpy \"src/wasm/build_debug/*.wasm\" dist ",
"build-wasm-debug": "make-dir src/wasm/build_debug && cd src/wasm/build_debug && emcmake cmake .. -DEMSCRIPTEN=true -DCMAKE_BUILD_TYPE=Debug && emmake make && npm run copy-debug-to-dist",
Expand Down

0 comments on commit 77dcc84

Please sign in to comment.