Download Button (#1865) #1004
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 Health UI Packages | |
name: Node.js Publish Health UI CSS Packages | |
on: | |
push: | |
branches: [ 'develop','console'] | |
paths: | |
- 'health/micro-ui/web/micro-ui-internals/packages/css/**' | |
# - 'health/micro-ui/web/micro-ui-internals/**' disabling main since we target only for css | |
pull_request: | |
branches: | |
- 'dev-hcm' | |
# Push events to branches matching refs/heads/mona/octocat | |
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: cd health/micro-ui/web/micro-ui-internals/ && bash ./publish-develop.sh | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |