From f0598634ce18029c38e415e2e96fdc38eab576cc Mon Sep 17 00:00:00 2001 From: felipprodrigues Date: Tue, 10 Oct 2023 14:53:06 -0300 Subject: [PATCH] fix deploy run --- .github/workflows/deploy.docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.docs.yml b/.github/workflows/deploy.docs.yml index 3d9cb16..9b11346 100644 --- a/.github/workflows/deploy.docs.yml +++ b/.github/workflows/deploy.docs.yml @@ -23,6 +23,6 @@ jobs: - name: Deploy storybook working-directory: ./packages/docs - run: npm run deploy-storybook -- --ci --existing-output-dir=storybook-static + run: touch storybook-static/.nojekyll && npm run deploy-storybook -- --ci --existing-output-dir=storybook-static env: GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}