Obpas changes: Added new actions changes post payment #38
This file contains 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 Packages | |
on: | |
push: | |
branches: [ 'Dev-2.0' ] | |
paths: | |
- 'frontend/micro-ui/web/micro-ui-internals/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14.20.0 | |
registry-url: https://registry.npmjs.org | |
- run: cd frontend/micro-ui/web/micro-ui-internals/ && bash ./publish.sh | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |