Merge pull request #663 from ishanvyas22/fix-deprecations #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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/migrations-docs-3' | |
ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }} |