-
-
Notifications
You must be signed in to change notification settings - Fork 65
41 lines (34 loc) · 818 Bytes
/
manual.yml
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
35
36
37
38
39
40
41
name: manual
on:
push:
branches:
- master
- develop
paths:
- 'Manual/**'
workflow_dispatch:
jobs:
build_and_test:
name: Build and deploy manual
runs-on: ubuntu-latest
steps:
- name: Install Linux Deps
run: sudo apt install texlive-xetex
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: false
- name: Build manual
working-directory: ${{github.workspace}}/Manual
run: |
make clean
make
- name: Deploy manual
uses: appleboy/scp-action@master
with:
host: ccrma-gate.stanford.edu
username: jatin
password: ${{ secrets.CCRMA_PASS }}
source: "Manual/ChowTapeManual.pdf"
target: "~/Library/Web/chowdsp/Products"
strip_components: 1