Skip to content

v0.14.0 - Walletconnect V2 #3

v0.14.0 - Walletconnect V2

v0.14.0 - Walletconnect V2 #3

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn publish --no-git-tag-version --new-version ${{ github.event.release.tag_name }}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}