Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbedard committed Jul 21, 2024
1 parent 24d924f commit bc87b85
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,20 @@ jobs:
- name: TypeScript tests
run: pnpm test

- name: Release
run: |
cd ./pkg
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: actions/upload-artifact@master
with:
name: pkg
path: pkg

release:
needs: [rust, wasm]

runs-on: ubuntu-latest

steps:
- run: |
cd ./pkg
ls -a
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# npm publish --access public

0 comments on commit bc87b85

Please sign in to comment.