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 bf5aa36 commit ad8bd02Copy full SHA for ad8bd02
.github/workflows/playground.yml
@@ -0,0 +1,21 @@
1
+name: playground
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
7
+jobs:
8
+ deploy:
9
+ environment:
10
+ name: Playground
11
+ url: https://playground.pysnippet.org/fastapi-oauth2
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Run deployment script on server
15
+ uses: appleboy/ssh-action@master
16
+ with:
17
+ host: ${{ secrets.HOST }}
18
+ username: ${{ secrets.USERNAME }}
19
+ key: ${{ secrets.KEY_ED25519 }}
20
+ port: ${{ secrets.PORT }}
21
+ script: sh ~/fastapi-oauth2/examples/demonstration/deploy.sh
0 commit comments