-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (32 loc) · 944 Bytes
/
deploy-dev.yml
File metadata and controls
41 lines (32 loc) · 944 Bytes
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
name: Deploy DEV to host
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '>=18'
- name: Defining environment variables
run: |
echo "VITE_SERVER_URL=https://server.dev.json.ms" > .env
echo "VITE_DEMO_PREVIEW_URL=https://demo.dev.json.ms" >> .env
- name: Install dependencies
run: yarn
- name: Build project
run: yarn build-only
- name: FTP Deploy
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: ./dist/
server-dir: ${{ secrets.FTP_WWW_DEV_PATH }}
protocol: ftps