Skip to content

Commit

Permalink
Merge pull request #214 from Loxeris/ci_storybook_always_build
Browse files Browse the repository at this point in the history
ci(Storybook): always build documentation
  • Loading branch information
aldbr committed Aug 28, 2024
2 parents d838a97 + 5e2c1ad commit aea2f06
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,26 +53,43 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: npx lerna publish from-package --no-push --no-private --yes

build-deploy-storybook-docs:
build-storybook-docs:
runs-on: ubuntu-latest
permissions:
id-token: write
pages: write
if: ${{ github.event_name == 'push' && github.repository == 'DIRACGrid/diracx-web' && github.ref_name == 'main'}}
if: ${{ github.event_name != 'push' || github.repository == 'DIRACGrid/diracx-web' }}
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'

- uses: bitovi/[email protected]
with:
build_command: npm run build-storybook -w @dirac-grid/diracx-web-components

- name: Build documentation
run: npm ci && npm run build-storybook -w @dirac-grid/diracx-web-components

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: packages/diracx-web-components/storybook-static
checkout: false

deploy-storybook-docs:
runs-on: ubuntu-latest
permissions:
id-token: write
pages: write
needs: [build-storybook-docs, release-please]
if: needs.release-please.outputs.release_created == 'true'
steps:
- id: deploy
name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
with:
token: ${{ github.token }}


build-deploy-dev-image:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'push' || github.repository == 'DIRACGrid/diracx-web' }}
Expand Down

0 comments on commit aea2f06

Please sign in to comment.