-
Notifications
You must be signed in to change notification settings - Fork 7
55 lines (49 loc) · 1.34 KB
/
deploy-api-client.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
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Deploy api and client
on:
push:
branches:
- main
paths:
- 'client/**'
- 'api/**'
- '.github/workflows/deploy-api-client.yml'
- 'docker-compose.yaml'
workflow_dispatch:
permissions:
actions: write
checks: read
deployments: write
pull-requests: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
path: substrait-fiddle
- name: Copy files to remote repository
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.DEPLOY_HOST_DNS }}
username: ${{ secrets.DEPLOY_USERNAME }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
rm: true
source: "substrait-fiddle/*"
target: ~/deployment
- name: Deploy the docker-compose
uses: appleboy/ssh-action@v1.0.3
env:
VITE_SESSION_SECRET: ${{ secrets.VITE_SESSION_SECRET }}
with:
host: ${{ secrets.DEPLOY_HOST_DNS }}
username: ${{ secrets.DEPLOY_USERNAME }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
envs: VITE_SESSION_SECRET
script: |
export VITE_SESSION_SECRET=$VITE_SESSION_SECRET
cd ~/deployment/substrait-fiddle
docker-compose stop
docker-compose rm -f
docker-compose build --no-cache
docker-compose up -d