Skip to content

refactor(actions): WIP on workflow #3

refactor(actions): WIP on workflow

refactor(actions): WIP on workflow #3

Workflow file for this run

on: push
name: 🚀 Deploy website on push
jobs:
web-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v2
with:
node-version: '20.10'
- name: 🔨 Build Project
run: |
npm install
npm run build
- name: 📂 Sync files
uses: SamKirkland/[email protected]
with:
server: $FTP_HOST
username: $FTP_USER
password: ${{ secrets.UNE_PASSWORD }}