Skip to content

ci: get all tags

ci: get all tags #9

name: Deploy Storybook
# TODO: Run only for main branch
on: [push]
jobs:
get-tags:
name: Get Tags
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.get-tags.outputs.result }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: get-tags
run: "git tag -l v*"
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- 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