Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix npm token for abi_wasm publishing #2633

Merged
merged 16 commits into from
Sep 13, 2023
Merged
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