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 4b3b47d commit bfd6380Copy full SHA for bfd6380
.github/workflows/deploy.yml
@@ -0,0 +1,21 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v3
14
15
+ - name: Deploy over SSH
16
+ uses: appleboy/[email protected]
17
+ with:
18
+ host: ${{ secrets.SERVER_HOST }}
19
+ username: ${{ secrets.SERVER_USER }}
20
+ key: ${{ secrets.SSH_KEY }}
21
+ script: /home/github/deploy-piwheelsblog.sh
Makefile
@@ -2,4 +2,4 @@ build:
BEEMO_CONFIG=config.yml beemo
serve:
- python -m http.server -d www 8001 &
+ python -m http.server -d www 8004 &
0 commit comments