Skip to content

Merge branch 'feat/wallet-connect-v2' into beta #33

Merge branch 'feat/wallet-connect-v2' into beta

Merge branch 'feat/wallet-connect-v2' into beta #33

Workflow file for this run

name: "🚀 Beta release"
on:
push:
branches:
- beta
jobs:
release:
name: 🚀 Beta release
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Build app
run: npm ci && npm run build:release
- name: 🚀 publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}