Skip to content

Commit 295372a

Browse files
authored
Merge pull request #8 from learning-process/macos-build
2 parents 18adc16 + 01893ab commit 295372a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build.yml

+15
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,18 @@ jobs:
2020
with:
2121
name: pdf-linux
2222
path: '*.pdf'
23+
macos-build:
24+
runs-on: macos-latest
25+
steps:
26+
- uses: actions/checkout@v4
27+
- name: Setup environment
28+
run: |
29+
brew install --cask mactex
30+
- name: Build
31+
run: |
32+
eval "$(/usr/libexec/path_helper)"
33+
find . -iname '*.tex' -exec pdflatex {} \;
34+
- uses: actions/upload-artifact@v4
35+
with:
36+
name: pdf-macos
37+
path: '*.pdf'

0 commit comments

Comments
 (0)