-
Notifications
You must be signed in to change notification settings - Fork 18
54 lines (52 loc) · 1.67 KB
/
deploy_development.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
name: Deploy to development env
on:
push:
branches:
- dev
paths:
- src/**
- public/**
- package*.json
- .github/workflows/deploy_development.yml
jobs:
deploy:
runs-on: ubuntu-latest
environment: development
steps:
- name: Install SSH Key
uses: kielabokkie/ssh-key-and-known-hosts-action@v1
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
ssh-host: ${{ secrets.SSH_HOST_NEW_IP }}
ssh-port: ${{ secrets.SSH_HOST_NEW_PORT }}
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node JS
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run TypeScript typecheck
run: npm run typecheck
- name: Set git commit
run: echo "REACT_APP_GIT_COMMIT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Build app
env:
REACT_APP_ENV: development
REACT_APP_OSM_API_URL: ${{ secrets.REACT_APP_OSM_API_URL }}
REACT_APP_OSM_OAUTH2_CLIENT_ID: ${{ secrets.REACT_APP_OSM_OAUTH2_CLIENT_ID }}
REACT_APP_OSM_OAUTH2_CLIENT_SECRET: ${{ secrets.REACT_APP_OSM_OAUTH2_CLIENT_SECRET }}
REACT_APP_BACKEND_API_URL: ${{ secrets.REACT_APP_BACKEND_API_URL_NEW }}
run: npm run build
- name: Create robots.txt
run: |
cat << 'EOF' >> build/robots.txt
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow: /
EOF
- name: Run deploy script on host
run: |
scp -rp -P${{ secrets.SSH_HOST_NEW_PORT }} build/* ${{ secrets.SSH_USER_NEW }}@${{ secrets.SSH_HOST_NEW_IP }}:~/dev-static/