Added icon props for formcomposer action buttons (#279) #60
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Node.js Publish UI CSS Packages | |
| on: | |
| push: | |
| branches: [ 'master','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 corev0.2 | |
| working-directory: ./react/css/ | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.npm_token }} |