config: Set auto-redeeming min value #262
Workflow file for this run
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: "Main" | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- "README.md" | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
name: Build test | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
npm install | |
npx @dappnode/dappnodesdk build --skip_save | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
needs: build-test | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish | |
run: | | |
npm install | |
npx @dappnode/dappnodesdk publish patch --dappnode_team_preset | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEVELOPER_ADDRESS: "0x7305356ad936A06c4ea5DF45AD5E5C3ff9Db818E" | |