Skip to content

1.2.2

1.2.2 #7

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@v3
- uses: actions/setup-node@v3
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 }}