We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da94927 commit dccbbc7Copy full SHA for dccbbc7
1 file changed
.github/workflows/master.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ web-deploy:
11
+ name: 🎉 Deploy
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: update
15
+ uses: appleboy/ssh-action@master
16
+ with:
17
+ host: ${{ secrets.SSH_HOST }}
18
+ username: ${{ secrets.SSH_USERNAME }}
19
+ key: ${{ secrets.SSH_KEY }}
20
+ port: ${{ secrets.SSH_PORT }}
21
+ script: |
22
+ cd ${{ secrets.PROJECT_FOLDER }}
23
+ php artisan docs:parse
0 commit comments