Redemptions veto mechanism (#788) #124
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
name: NPM TBTCv2 Contracts | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "solidity/contracts/**" | |
- "solidity/deploy/**" | |
- "solidity/tasks/**" | |
- "solidity/hardhat.config.ts" | |
- "solidity/package.json" | |
- "solidity/yarn.lock" | |
workflow_dispatch: | |
jobs: | |
npm-compile-publish-contracts: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./solidity | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "14.x" | |
registry-url: "https://registry.npmjs.org" | |
cache: "yarn" | |
cache-dependency-path: solidity/yarn.lock | |
# We need this step because the `@keep-network/tbtc` which we update in | |
# next steps has a dependency to `@summa-tx/relay-sol@2.0.2` package, which | |
# downloads one of its sub-dependencies via unathenticated `git://` | |
# protocol. That protocol is no longer supported. Thanks to this step | |
# `https://` is used instead of `git://`. | |
- name: Configure git to don't use unauthenticated protocol | |
run: git config --global url."https://".insteadOf git:// | |
- name: Resolve latest contracts | |
run: | | |
yarn upgrade --exact \ | |
@keep-network/ecdsa \ | |
@keep-network/random-beacon \ | |
@keep-network/tbtc | |
# Deploy contracts to a local network to generate deployment artifacts that | |
# are required by dashboard compilation. | |
- name: Deploy contracts | |
run: yarn deploy:test --network hardhat --write true | |
- name: Bump up package version | |
id: npm-version-bump | |
uses: keep-network/npm-version-bump@v2 | |
with: | |
work-dir: ./solidity | |
environment: dev | |
branch: ${{ github.ref }} | |
commit: ${{ github.sha }} | |
- name: Publish package | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm publish --access=public --tag=development --network=hardhat |