-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (40 loc) · 1.28 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Deploy
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
name: "Build"
uses: marshallku/gifconverter/.github/workflows/build.yml@master
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: ["build"]
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: gifconverter-artifact
path: dist/
- name: Deploy via SCP
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SERVER_IP }}
port: ${{ secrets.SERVER_PORT }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.ED_KEY }}
source: "dist"
target: "/var/www"
- name: Run shell script
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
port: ${{ secrets.SERVER_PORT }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.ED_KEY }}
script_stop: true
script: |
cd /var/www
./deploy.sh gifconverter