chore: bump version #39
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: art-component-release | |
on: | |
push: | |
branches: | |
- "main" # change to the branch you wish to deploy from | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.build-publish.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- id: build-publish | |
uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3 | |
with: | |
path: storybook-static # change to your build folder | |
build_command: npm run build-storybook | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.2.0 | |
- name: Install dependencies | |
run: | | |
npm ci | |
npm run build | |
- name: Add Npm Token # add access token to .npmrc | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ./.npmrc | |
ls -al | |
cat ./.npmrc | |
- name: Publish to npm # publish to npm registry | |
run: npm publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.ART }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |