Remove .DS_Store and ignore it
Some checks failed
Build Proposal and Thesis / build (push) Failing after 4s

This commit is contained in:
Sean O'Connor
2026-02-04 13:20:31 -05:00
parent d88597af2b
commit d430cb4f35
4 changed files with 22 additions and 8 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -2,21 +2,32 @@ name: Build Proposal and Thesis
on: on:
push: push:
branches: ["main"] branches: [main]
pull_request: pull_request:
branches: ["main"] branches: [main]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/xu-cheng/texlive-alpine:latest
steps: steps:
- uses: actions/checkout@v3 - name: Install system dependencies
run: apk add --no-cache git make bash
- name: Install LaTeX - uses: actions/checkout@v4
run: |
sudo apt-get update - name: Cache TeX Live
sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra texlive-bibtex-extra latexmk 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 - name: Build Thesis
run: | run: |

3
.gitignore vendored
View File

@@ -19,3 +19,6 @@ build/
# context directory # context directory
context context
# OS files
.DS_Store

BIN
proposal/.DS_Store vendored

Binary file not shown.