Skip to content

Create CODE_OF_CONDUCT.md #23

Create CODE_OF_CONDUCT.md

Create CODE_OF_CONDUCT.md #23

Workflow file for this run

on:
push:
branches:
- main
name: 🚀 Deploy website on push
jobs:
web-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
- name: Deploy to server
uses: wlixcc/[email protected]
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
local_path: './dist/*'
remote_path: '/'
sftp_only: true