Skip to content

adapter-static added #17

adapter-static added

adapter-static added #17

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@v2
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: '16'
- 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