From d8e69333ddc83adc5b3696147af0cf180df01420 Mon Sep 17 00:00:00 2001 From: ADmad Date: Sun, 8 Mar 2026 20:14:15 +0530 Subject: [PATCH] Add Github action for 4.x docs --- .github/workflows/deploy_docs_4x.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/deploy_docs_4x.yml diff --git a/.github/workflows/deploy_docs_4x.yml b/.github/workflows/deploy_docs_4x.yml new file mode 100644 index 00000000..07a43d25 --- /dev/null +++ b/.github/workflows/deploy_docs_4x.yml @@ -0,0 +1,23 @@ +--- +name: 'deploy_docs_4x' + +on: + push: + branches: + - 4.x + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Cloning repo + uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - name: Push to dokku + uses: dokku/github-action@master + with: + git_remote_url: 'ssh://dokku@apps.cakephp.org:22/authentication-docs-4' + ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }}