From f96a7122a76d0d4e615f58678cf6da19d324b16d Mon Sep 17 00:00:00 2001 From: Petr Ruzicka Date: Tue, 18 Feb 2020 10:27:21 +0100 Subject: [PATCH] Upgrade actions-gh-pages to "v3" Upgrade actions-gh-pages to "v3" --- .github/workflows/vuepress-build-check-deploy.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/vuepress-build-check-deploy.yml b/.github/workflows/vuepress-build-check-deploy.yml index a2a0d1a..d7ca4ae 100644 --- a/.github/workflows/vuepress-build-check-deploy.yml +++ b/.github/workflows/vuepress-build-check-deploy.yml @@ -79,11 +79,9 @@ jobs: wget -qO- https://raw.githubusercontent.com/ruzickap/action-my-broken-link-checker/v1/entrypoint.sh | bash - name: Deploy - uses: peaceiris/actions-gh-pages@v2.8.0 + uses: peaceiris/actions-gh-pages@v3 if: github.event_name == 'push' && github.ref == 'refs/heads/master' - env: - ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} - PUBLISH_BRANCH: gh-pages - PUBLISH_DIR: ./docs/.vuepress/dist with: - forceOrphan: true + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs/.vuepress/dist + force_orphan: true