Skip to content

fix: wallet connect out dah box #8

fix: wallet connect out dah box

fix: wallet connect out dah box #8

Workflow file for this run

# @format
name: Publish to NPM
on:
push:
branches:
- main
paths-ignore:
- "**.md"
permissions:
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Automated Version Bump
uses: phips28/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
minor-wording: "feat,feature"
major-wording: "BREAKING,major"
patch-wording: "fix,patch"
rc-wording: "rc,beta,alpha"
- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}