mirror of
https://github.com/soconnor0919/honors-thesis.git
synced 2026-02-04 21:46:31 -05:00
Remove .DS_Store and ignore it
Some checks failed
Build Proposal and Thesis / build (push) Failing after 4s
Some checks failed
Build Proposal and Thesis / build (push) Failing after 4s
This commit is contained in:
27
.github/workflows/build.yml
vendored
27
.github/workflows/build.yml
vendored
@@ -2,21 +2,32 @@ name: Build Proposal and Thesis
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: ["main"]
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
container: ghcr.io/xu-cheng/texlive-alpine:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install system dependencies
|
||||
run: apk add --no-cache git make bash
|
||||
|
||||
- name: Install LaTeX
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra texlive-bibtex-extra latexmk
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Cache TeX Live
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
/tmp/texlive
|
||||
~/.texlive*
|
||||
key: texlive-${{ runner.os }}-${{ hashFiles('**/*.tex') }}
|
||||
restore-keys: |
|
||||
texlive-${{ runner.os }}-
|
||||
|
||||
- name: Create TeX Live directory
|
||||
run: mkdir -p /tmp/texlive
|
||||
|
||||
- name: Build Thesis
|
||||
run: |
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -19,3 +19,6 @@ build/
|
||||
|
||||
# context directory
|
||||
context
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
|
||||
BIN
proposal/.DS_Store
vendored
BIN
proposal/.DS_Store
vendored
Binary file not shown.
Reference in New Issue
Block a user