forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (45 loc) · 1.5 KB
/
docsite-publish-chromatic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Workflow name
name: 'Docsite publish to Chromatic'
on:
push:
branches:
- master
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
if: ${{ contains(github.event.head_commit.message, 'applying package updates') || github.event_name == 'workflow_dispatch' }}
outputs:
status: ${{ steps.verify-react-components-changed.outputs.any_changed == 'true' || github.event_name == 'workflow_dispatch' }}
steps:
- uses: actions/checkout@v3
name: Checkout [master]
- name: Verify react-compoenents has changed
uses: tj-actions/changed-files@v41
id: verify-react-components-changed
with:
files: |
packages/react-components/react-components/package.json
deploy:
runs-on: ubuntu-latest
needs: check
if: needs.check.outputs.status == 'true'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'yarn'
- name: Install packages
run: yarn install --frozen-lockfile
- name: Build dependencies
uses: ./.github/actions/build-to
with:
workspaces: '@fluentui/public-docsite-v9'
backfill-cache-provider-options: ${{ secrets.BACKFILL_CACHE_PROVIDER_OPTIONS }}
- name: Publish to Chromatic
run: yarn workspace @fluentui/public-docsite-v9 chromatic
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}