-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add first version of new deploy-storybook ci
- Loading branch information
Bastian Jakobi
committed
Jun 13, 2024
1 parent
e2b0919
commit a57c6b7
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Deploy Storybook (Fork) | ||
on: | ||
workflow_run: | ||
workflows: ["Build Storybook (Fork)"] | ||
types: | ||
- completed | ||
jobs: | ||
deploy-storybook-fork: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Download build artifacts | ||
uses: dawidd6/action-download-artifact@v3 | ||
with: | ||
run_id: ${{ github.event.workflow_run.id }} | ||
name: storybook-dist | ||
- name: List Storybook files | ||
run: echo "PIA_TOKEN missing. Skipping Chromatic deployment for Portal Integration Angular." |