forked from flockflair-dbit/acm-website
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 746 Bytes
/
upload.yml
File metadata and controls
34 lines (32 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
on:
push:
branches:
- master
repository_dispatch:
types:
- webhook
workflow_dispatch:
name: Deploy website on push
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Get latest code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install dependencies
run: npm install
- name: Build static site
run: npm run build
- name: Sync files
uses: SamKirkland/FTP-Deploy-Action@4.2.0
with:
server: dbit.acm.org
username: ${{ secrets.username}}
password: ${{ secrets.password }}
server-dir: ./public_html/
local-dir: ./dist/