Skip to content

New react components (#133) #35

New react components (#133)

New react components (#133) #35

Workflow file for this run

name: Node.js Publish UI CSS Packages
on:
push:
branches: [ 'develop' ]
paths:
- 'react/css/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: yarn && yarn build && npm publish --tag core-v0.1
working-directory: ./react/css/
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}