Skip to content

Commit a6a7e4d

Browse files
committed
add static deploy
1 parent 696a985 commit a6a7e4d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/deploy_static.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: pk web site static deployment
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: executing remote ssh commands for static deployment
11+
uses: appleboy/ssh-action@v1.2.1
12+
with:
13+
host: ${{ secrets.HOSTNAME }}
14+
username: ${{ secrets.USERNAME }}
15+
key: ${{ secrets.KEY }}
16+
script:
17+
cd python.or.kr && bash deploy_static.sh
18+

0 commit comments

Comments
 (0)