From 9dc608193b8a789931b8667c97bdcd6d4bdfff05 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 26 Jul 2022 20:32:25 +0100 Subject: [PATCH] a --- .github/workflows/chromatic.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 89b0e44a9..3437326d6 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -10,9 +10,6 @@ jobs: storybook-build: # Operating System runs-on: ubuntu-latest - defaults: - run: - working-directory: ./src/Ombi/ClientApp steps: - name: Checkout repository uses: actions/checkout@v2 @@ -26,6 +23,7 @@ jobs: key: node_modules-${{ hashFiles('**/yarn.lock') }} - name: Install dependencies + working-directory: ./src/Ombi/ClientApp run: yarn - name: Publish to Chromatic @@ -34,6 +32,7 @@ jobs: with: projectToken: 7c47e1a1a4bd exitZeroOnChanges: true + workingDir: ./src/Ombi/ClientApp - name: Publish to Chromatic and auto accept changes if: github.ref == 'refs/heads/master' @@ -41,3 +40,4 @@ jobs: with: projectToken: 7c47e1a1a4bd autoAcceptChanges: true # 👈 Option to accept all changes + workingDir: ./src/Ombi/ClientApp