Skip to content

Commit

Permalink
Merge pull request #253 from cakephp/3.x-docs-deploy-action
Browse files Browse the repository at this point in the history
adjustments to make 3.x docs deploy work
  • Loading branch information
LordSimal authored Sep 16, 2023
2 parents fcf5947 + 73ec69f commit 55863d1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy_docs_3x.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: 'deploy_docs_3x'

on:
push:
branches:
- 3.x
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Cloning repo
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Push to dokku
uses: dokku/github-action@master
with:
git_remote_url: 'ssh://[email protected]:22/authorization-docs-3'
ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }}

0 comments on commit 55863d1

Please sign in to comment.