Skip to content

fix slides URLs

fix slides URLs #15

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/[email protected]
- name: Install depencies
run: yarn install
- name: Build website
run: yarn build
- name: Copy site to DigitalOcean
uses: burnett01/[email protected]
with:
switches: --delete --human-readable --ignore-errors --progress --recursive --stats --times --verbose
path: public/
remote_path: ${{ secrets.SSH_PATH }}
remote_host: ${{ secrets.SSH_HOST }}
remote_user: ${{ secrets.SSH_USERNAME }}
remote_key: ${{ secrets.SSH_KEY }}