Skip to content

ci: get all tags

ci: get all tags #7

name: Deploy Storybook
# TODO: Run only for main branch
on: [push]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- run: "git tag -l v*"
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: "20.x"
# - name: Install dependencies
# run: npm ci
# - name: Build storybook
# run: npm run build:storybook
# - name: Upload artifact
# uses: actions/upload-pages-artifact@v3
# with:
# path: storybook-static
# - name: Deploy to GitHub Pages
# uses: actions/deploy-pages@v4