diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8f717544de..32a0c1a4ba 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -50,6 +50,8 @@ jobs: - name: Deploy to uiwjs.github.io Repo uses: peaceiris/actions-gh-pages@v3 with: + user_name: 'github-actions[bot]' + user_email: 'github-actions[bot]@users.noreply.github.com' commit_message: '[${{steps.tag_version.outputs.tag}}] ${{ github.event.head_commit.message }}' personal_token: ${{ secrets.PERSONAL_TOKEN_UIW }} publish_dir: ./website/build @@ -59,6 +61,8 @@ jobs: - name: Deploy gh-pages Branch uses: peaceiris/actions-gh-pages@v3 with: + user_name: 'github-actions[bot]' + user_email: 'github-actions[bot]@users.noreply.github.com' commit_message: '[${{steps.tag_version.outputs.tag}}] ${{ github.event.head_commit.message }}' github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./website/build diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index 9c38ba5fde..38a6e51577 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -75,6 +75,8 @@ jobs: - name: Deploy to uiwjs.github.io uses: peaceiris/actions-gh-pages@v3 with: + user_name: 'github-actions[bot]' + user_email: 'github-actions[bot]@users.noreply.github.com' commit_message: '[${{steps.tag_version.outputs.tag}}] ${{ github.event.head_commit.message }}' personal_token: ${{ secrets.PERSONAL_TOKEN_UIW }} publish_dir: ./website/build @@ -84,6 +86,8 @@ jobs: - name: Deploy gh-pages uses: peaceiris/actions-gh-pages@v3 with: + user_name: 'github-actions[bot]' + user_email: 'github-actions[bot]@users.noreply.github.com' commit_message: '[${{steps.tag_version.outputs.tag}}] ${{ github.event.head_commit.message }}' deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} publish_branch: gh-pages