Skip to content

1.4.3

1.4.3 #12

Workflow file for this run

name: publish-react
on:
workflow_dispatch:
release:
types: [created]
paths:
- "packages/react/**"
jobs:
publish-npm-registry:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./packages/react
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@dooboo'
- name: Install modules
run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}