ActionsMenu update and tags UI bug fixes (#348) #816
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: Deploy Storybook to github page | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy-storybook: | |
# needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
actions: write | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.12.2 | |
registry-url: https://registry.npmjs.org/ | |
- name: npm install and deploy | |
run: | | |
npm ci | |
npm run deploy-storybook -- --ci | |
env: | |
CI: true | |
GH_TOKEN: github-orchestrated:${{ secrets.GITHUB_TOKEN }} |