Refactor build to cake's new node based vitepress theme package (#8262) #268
This file contains hidden or 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_5' | |
| on: | |
| push: | |
| branches: | |
| - 5.x | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| 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: | |
| branch: '5.x' | |
| git_remote_url: 'ssh://dokku@apps.cakephp.org:22/newbook-5' | |
| git_push_flags: '-f' | |
| ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }} |