Merge pull request #261 from willwng/main #128
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
name: docs | |
on: | |
push: | |
paths: | |
- 'docs/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1 | |
with: | |
mdbook-version: 'latest' | |
- name: mdbook | |
run: mdbook build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: book | |
path: book | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
if: ${{github.event_name=='push' && github.ref=='refs/heads/main' && github.repository_owner == 'sampsyo'}} | |
steps: | |
- name: Tailscale | |
uses: tailscale/github-action@v2 | |
with: | |
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} | |
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} | |
tags: tag:ci | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: book | |
path: book | |
- run: ls -R | |
- name: rsync | |
env: | |
DEPLOY_HOST: courses.cit.cornell.edu | |
DEPLOY_USER: als485 | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
DEPLOY_KNOWN_HOSTS: ${{ secrets.DEPLOY_KNOWN_HOSTS }} | |
DEPLOY_SRC: ./book/ | |
DEPLOY_DEST: coursewww/capra.cs.cornell.edu/htdocs/bril | |
run: | | |
echo "$DEPLOY_KEY" > pk | |
echo "$DEPLOY_KNOWN_HOSTS" > kh | |
chmod 600 pk | |
rsync --compress --recursive --checksum --itemize-changes --delete \ | |
--perms --chmod=Du=rwx,Dgo=rx,Fu=rw,Fog=r \ | |
-e "ssh -i pk -o 'UserKnownHostsFile kh'" \ | |
$DEPLOY_SRC $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_DEST |