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 eafdacf commit bc85008Copy full SHA for bc85008
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+name: Deploy release to test.os2forms.dk
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+
7
+ build:
8
+ name: Build
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: executing remote ssh commands using password
12
+ uses: appleboy/ssh-action@master
13
+ with:
14
+ host: ${{ secrets.HOST }}
15
+ username: ${{ secrets.USERNAME }}
16
+ key: ${{ secrets.KEY }}
17
+ port: ${{ secrets.PORT }}
18
+ script: |
19
+ whoami
20
+ sh /var/www/test.os2forms.dk/private/os2forms_init/rebuild_installation.sh
0 commit comments