Merge pull request #1454 from IFRCGo/fix/labels-risk-map #76
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
name: 'Chromatic Publish' | |
on: | |
push: | |
branches: | |
- develop | |
- project/storybook | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: write | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
changed-files: | |
runs-on: ubuntu-latest | |
name: Check for changed files | |
outputs: | |
all_changed_files: ${{ steps.changed-files.outputs.all_changed_files }} | |
any_changed: ${{ steps.changed-files.outputs.any_changed }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
packages/ui/** | |
packages/go-ui-storybook/** | |
chromatic: | |
name: Build & Deploy | |
needs: [changed-files] | |
if: ${{ needs.changed-files.outputs.any_changed == 'true' }} | |
uses: ./.github/workflows/chromatic.yml | |
secrets: inherit |