Skip to content

Commit

Permalink
do not publish to npm on each release (#12)
Browse files Browse the repository at this point in the history
* do not publish to npm on each release

* add rust-cache
  • Loading branch information
lonerapier authored Oct 29, 2024
1 parent 7b0e910 commit 5eac652
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ jobs:
with:
toolchain: nightly-2024-06-10

- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true

- name: Install Circom
run: |
CIRCOM_VERSION=2.1.9
Expand Down
7 changes: 6 additions & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ module.exports = {
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/npm',
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
'@semantic-release/github',
[
'@semantic-release/git',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-prover-circuits",
"version": "0.2.1",
"version": "0.2.2",
"description": "ZK Circuits for WebProofs",
"dependencies": {
"parser-attestor": "github:pluto/parser-attestor#b9feeeb240ddf867da85198de7d59e73cba4b008",
Expand Down

0 comments on commit 5eac652

Please sign in to comment.