Skip to content

FTP action dry run

FTP action dry run #1

Workflow file for this run

name: Services
on:
push:
branches: [ftp-dry-run]
jobs:
build_deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.14.2
- name: Installing Dependencies
run: npm ci
- name: Building
run: npm run build
- name: Deploying
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: "build/"
dry-run: true