We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2e24d6 commit 6f5b3f5Copy full SHA for 6f5b3f5
.github/workflows/deploy.yaml
@@ -0,0 +1,17 @@
1
+name: deployment
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ deploy:
8
+ name: deploy
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: deployment
12
+ uses: appleboy/ssh-action@master
13
+ with:
14
+ host: ${{ secrets.HOST }}
15
+ username: ${{ secrets.USERNAME }}
16
+ password: ${{ secrets.PASSWORD }}
17
+ script: bash ~/nattukaka/apps/numero/deploy.sh
0 commit comments