Skip to content

Bump vite from 5.1.4 to 5.1.7 #27

Bump vite from 5.1.4 to 5.1.7

Bump vite from 5.1.4 to 5.1.7 #27

Workflow file for this run

on: push
name: πŸš€ Deploy to Production server
jobs:
web-deploy:
name: πŸŽ‰ Deploy
runs-on: ubuntu-latest
timeout-minutes: 180
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
- name: πŸ”¨ Build Project
run: |
npm install
npm run build
- name: πŸ“‚ Sync files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
exclude: |
**/.git*
**/.git*/**
**/node_modules/**
**/.idea*
**/.idea*/**
timeout: 180000