This is an automated email from the ASF dual-hosted git repository. jark pushed a commit to branch ci-test-docs-deploy in repository https://gitbox.apache.org/repos/asf/fluss.git
commit d852f9e8328985320275c996ab11cf16bba244d0 Author: Jark Wu <[email protected]> AuthorDate: Fri Jul 11 00:22:42 2025 +0800 WIP --- .github/workflows/docs-deploy.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs-deploy.yaml b/.github/workflows/docs-deploy.yaml index ab1c170d..0704f43b 100644 --- a/.github/workflows/docs-deploy.yaml +++ b/.github/workflows/docs-deploy.yaml @@ -42,11 +42,15 @@ jobs: run: npm install - name: Build website run: npm run build - - uses: webfactory/[email protected] - with: - ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} + - name: Setup SSH + env: + SSH_AUTH_SOCK: /tmp/ssh_agent.sock + run: | + ssh-agent -a $SSH_AUTH_SOCK > /dev/null + ssh-add - <<< "${{ secrets.GH_PAGES_DEPLOY }}" - name: Deploy website env: + SSH_AUTH_SOCK: /tmp/ssh_agent.sock USE_SSH: true run: | git config --global user.email "[email protected]"
