webhook #131
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
repository_dispatch: | |
types: | |
- webhook | |
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/ |