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 21f4c37 commit 33e5a1cCopy full SHA for 33e5a1c
.github/workflows/clean-serverest-dev.yml
@@ -0,0 +1,28 @@
1
+name: Clean serverest.dev database
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 6 * * *"
7
8
+jobs:
9
+ release-on-serverest-dev:
10
11
+ runs-on: ubuntu-18.04
12
13
+ steps:
14
+ - name: Project checkout
15
+ uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 2
18
+ - name: Setup SSH to use on 'git push umbler'
19
+ uses: shimataro/[email protected]
20
21
+ private-key: ${{ secrets.SSH_PRIVATE_KEY }}
22
+ public-key: ${{ secrets.SSH_PUBLIC_KEY }}
23
+ known-hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
24
+ - name: Release on serverest.dev
25
+ run: |
26
+ git remote add umbler ssh://[email protected]:9922/jnydrgre/serverest-dev.git
27
+ git fetch --unshallow origin
28
+ git push umbler ${GITHUB_REF##*/}:trunk --no-verify --force
0 commit comments