Skip to content

[fix] separate workflows for envs #1

[fix] separate workflows for envs

[fix] separate workflows for envs #1

Workflow file for this run

name: Deploy to FTP Server
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Deploy
uses: SamKirkland/FTP-Deploy-Action@4.3.1
with:
server: '${{ secrets.FTP_SERVER }}'
username: '${{ secrets.DEV_FTP_USERNAME }}'
password: '${{ secrets.DEV_FTP_PASSWORD }}'
local-dir: ./build
server-dir: /