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.
2 parents cb72300 + b94afd3 commit 839d352Copy full SHA for 839d352
1 file changed
.github/workflows/deploy.yml
@@ -0,0 +1,21 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Deploy to VPS
13
+ uses: appleboy/ssh-action@v1.2.0
14
+ with:
15
+ host: ${{ secrets.VPS_HOST }}
16
+ username: ${{ secrets.VPS_USERNAME }}
17
+ key: ${{ secrets.VPS_PRIVATE_KEY }}
18
+ port: ${{ secrets.VPS_PORT }}
19
+ script: |
20
+ cd check-subdomain
21
+ ./deploy.sh
0 commit comments