-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update workflow to support semantic release (#602)
* chore: update workflow to support semantic release * fix: support for ethers-v5 branch * chore: update npm publish to use just one workflow * chore: delete tag from npm publish workflow and update git release workflow * fix: update starting commit sha * fix: disable bump-patch-for-minor-pre-major --------- Co-authored-by: Marko Arambasic <[email protected]>
- Loading branch information
1 parent
808fc6c
commit 5384f53
Showing
18 changed files
with
108 additions
and
776 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"separate-pull-requests": true, | ||
"group-pull-request-title-pattern": "chore(${component}): release at branch ${branch}", | ||
"bootstrap-sha": "4d2086931dcebd7e7c21cad9cbd6668c2abbebbf", | ||
"bump-minor-pre-major": true, | ||
"bump-patch-for-minor-pre-major": false, | ||
"packages": { | ||
"packages/hardhat-zksync-deploy": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-deploy" | ||
}, | ||
"packages/hardhat-zksync-solc": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-solc" | ||
}, | ||
"packages/hardhat-zksync-upgradable": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-upgradable" | ||
}, | ||
"packages/hardhat-zksync-vyper": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-vyper" | ||
}, | ||
"packages/hardhat-zksync-verify": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-verify" | ||
}, | ||
"packages/hardhat-zksync-toolbox": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-toolbox" | ||
}, | ||
"packages/hardhat-zksync-node": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-node" | ||
}, | ||
"packages/hardhat-zksync-chai-matchers": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-chai-matchers" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"packages/hardhat-zksync-deploy": "1.1.1", | ||
"packages/hardhat-zksync-solc": "1.0.5", | ||
"packages/hardhat-zksync-upgradable": "1.2.0", | ||
"packages/hardhat-zksync-vyper": "1.0.4", | ||
"packages/hardhat-zksync-verify": "1.2.1", | ||
"packages/hardhat-zksync-toolbox": "1.2.0", | ||
"packages/hardhat-zksync-node": "1.0.0", | ||
"packages/hardhat-zksync-chai-matchers": "1.2.0" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Publish packages to github | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- ethers-v5 | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
release_please_output: ${{ toJSON(steps.release.outputs) }} | ||
steps: | ||
- name: Run release-please | ||
id: release | ||
uses: google-github-actions/release-please-action@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config-file: .github/release-please/config.json | ||
manifest-file: .github/release-please/manifest.json | ||
target-branch: ${{ github.ref_name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.