Skip to content

Commit

Permalink
chore: fix npm token for abi_wasm publishing (#2633)
Browse files Browse the repository at this point in the history
Co-authored-by: Koby Hall <102518238+kobyhallx@users.noreply.github.com>
  • Loading branch information
jonybur and kobyhallx authored Sep 13, 2023
1 parent 14662ef commit 8e93a5f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/publish-abi_wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- uses: cachix/install-nix-action@v20
- name: Setup Node.js
uses: actions/setup-node@v3
with:
registry-url: "https://registry.npmjs.org"
node-version: 18.15

- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-23.05
github_access_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 4 additions & 1 deletion tooling/noirc_abi_wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
"collaborators": [
"The Noir Team <team@noir-lang.org>"
],
"version": "0.8.0",
"version": "0.10.3",
"files": [
"nodejs",
"web",
"package.json"
],
"publishConfig": {
"access": "public"
},
"main": "./nodejs/noirc_abi_wasm.js",
"types": "./web/noirc_abi_wasm.d.ts",
"module": "./web/noirc_abi_wasm.js",
Expand Down

0 comments on commit 8e93a5f

Please sign in to comment.