Skip to content

fix feather.js version #87

fix feather.js version

fix feather.js version #87

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: version & publish
uses: geeman201/conventional-changelog-npm-publish/@v14
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}