diff options
author | 2023-03-17 14:45:51 +0100 | |
---|---|---|
committer | 2023-03-17 14:45:51 +0100 | |
commit | ce459d95f893420b6b6968488bfc7a673ccb86f2 (patch) | |
tree | 4027139e614a83df912fe2669fdd504669cb4b74 /.github | |
parent | Merge pull request #2 from lordvlad/lordvlad/issue125 (diff) |
Attempt at fixing storybook deploy
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yaml | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 470de62..614084a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,20 +34,6 @@ jobs: name: build path: build - deploy_storybook: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/[email protected] - with: - node-version: '16' - - uses: bahmutov/npm-install@v1 - - run: yarn build-storybook -o ./build_storybook - - run: git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${{github.repository}}.git - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: npx -y -p [email protected] gh-pages -d ./build_storybook --dest storybook --add -u "github-actions-bot <[email protected]>" - check_if_version_upgraded: name: Check if version upgrade runs-on: ubuntu-latest @@ -87,7 +73,8 @@ jobs: - run: git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${{github.repository}}.git env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: npx -y -p [email protected] gh-pages -d build -u "github-actions-bot <[email protected]>" + - run: npx -y -p [email protected] gh-pages -u "github-actions-bot <[email protected]>" -d build + - run: npx -y -p [email protected] gh-pages -u "github-actions-bot <[email protected]>" -d build_storybook --dest storybook --add docker: needs: |