Skip to content

Commit

Permalink
Merge pull request #615 from oceanprotocol/feature/fix_release_script
Browse files Browse the repository at this point in the history
Feature/fix_release_script
  • Loading branch information
alexcos20 authored Aug 14, 2024
2 parents e266cc6 + bf5cbca commit e0d7886
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name: Docker Multi Platform Builds

on:
workflow_dispatch:
workflow_dispatch:
push:
branches:
- 'main'
- 'develop'
tags:
- 'v*.*.*'
pull_request:
Expand Down
17 changes: 16 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"test:load": "npm run test:k6-common k6 run -e TEST_TYPE=load \"./dist/test/performance/perf_test.js\"",
"test:stress": "npm run test:k6-common k6 run -e TEST_TYPE=stress \"./dist/test/performance/perf_test.js\"",
"test:request:rate": "npm run test:k6-common && k6 run -e RATE=true \"./dist/test/performance/perf_test.js\"",
"release": "release-it"
"release": "release-it --non-interactive"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^13.1.0",
Expand Down Expand Up @@ -135,5 +135,20 @@
"prettier": "^3.0.3",
"release-it": "^17.6.0",
"tsx": "^3.12.8"
},
"release-it": {
"hooks": {
"after:bump": "npm run changelog"
},
"plugins": {},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}

0 comments on commit e0d7886

Please sign in to comment.