We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ae14a commit d384148Copy full SHA for d384148
.github/workflows/deploy_5.yml
@@ -0,0 +1,28 @@
1
+---
2
+name: 'deploy_5.x'
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - 5.x
8
+ workflow_dispatch:
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: ${{ github.ref != 'refs/heads/5.next' }}
13
14
+jobs:
15
+ deploy:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Cloning repo
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
23
+ - name: Push to dokku
24
+ uses: dokku/github-action@master
25
26
+ git_remote_url: 'ssh://[email protected]:22/book-5'
27
+ git_push_flags: '-f'
28
+ ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }}
0 commit comments