1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-01 08:46:59 +01:00
notes/.github/workflows/deploy.yml
2021-05-04 11:39:38 +01:00

39 lines
843 B
YAML

name: Deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: egordm/gha-yarn-node-cache@v1
- run: yarn install
- run: npm run build
- name: Archive
uses: actions/upload-artifact@v2
with:
name: notes
path: public
- name: rclone
uses: wei/rclone@master
with:
args: sync public/ pages:notes.theorangeone.net/
env:
RCLONE_CONFIG_PAGES_TYPE: webdav
RCLONE_CONFIG_PAGES_URL: https://pages.theorangeone.net
RCLONE_CONFIG_PAGES_USER: github
RCLONE_CONFIG_PAGES_PASS: ${{ secrets.RCLONE_WEBDAV_PASSWORD }}