Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 083db81

Browse files
authored
Merge pull request #2 from paambaati/patch-1
github/build: Fix indentation
2 parents ae58973 + da92d2f commit 083db81

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,17 @@ jobs:
6868
needs: [test]
6969
name: Publish storybook to chromatic 🧪
7070
runs-on: ubuntu-latest
71+
defaults:
72+
run:
73+
working-directory: example
7174
steps:
7275
- uses: actions/checkout@v2
7376
- uses: actions/setup-node@v1
7477
with:
7578
node-version: 12.x
7679
- run: npx yarn bootstrap
77-
- working-directory: example
78-
uses: chromaui/action@v1
79-
with:
80-
token: ${{ secrets.GITHUB_TOKEN }}
81-
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
80+
working-directory: ../
81+
- uses: chromaui/action@v1
82+
with:
83+
token: ${{ secrets.GITHUB_TOKEN }}
84+
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

0 commit comments

Comments
 (0)