Skip to content

Commit

Permalink
ci: get all tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tillywoodfield committed Jun 4, 2024
1 parent d852224 commit 373c708
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,24 @@ jobs:
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: tags
uses: octokit/[email protected]
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
route: GET /repos/${{ github.repository }}/git/matching-refs/tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: "echo '${{ steps.tags.outputs.data }}'"
# - 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

0 comments on commit 373c708

Please sign in to comment.