diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml new file mode 100644 index 0000000..8c44d10 --- /dev/null +++ b/.github/workflows/deploy-pages.yml @@ -0,0 +1,32 @@ +name: Deploy Pages + +on: + release: + types: [published] + workflow_dispatch: + +jobs: + deploy-gh-pages: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 1 + - uses: actions/setup-node@v2 + with: + node-version: 12 + registry-url: https://registry.npmjs.org/ + - name: Build + run: | + npm ci + npm run build + rm -rf public/test + env: + CYPRESS_INSTALL_BINARY: 0 + HUSKY_SKIP_INSTALL: true + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PUBLISH_BRANCH: gh-pages + PUBLISH_DIR: ./public diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 8d3000c..30c4a8c 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -1,4 +1,4 @@ -name: Publish and deploy +name: Publish to npm on: release: @@ -22,29 +22,3 @@ jobs: - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - - deploy-gh-pages: - needs: publish-npm - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 1 - - uses: actions/setup-node@v2 - with: - node-version: 12 - registry-url: https://registry.npmjs.org/ - - name: Build - run: | - npm ci - npm run build - rm -rf public/test - env: - CYPRESS_INSTALL_BINARY: 0 - HUSKY_SKIP_INSTALL: true - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PUBLISH_BRANCH: gh-pages - PUBLISH_DIR: ./public