From 6670aded89e0cd687f8abfa0399e2f9c7d774ac4 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Thu, 5 Sep 2024 20:52:28 -0400 Subject: [PATCH] Remove "prototype" handling from `citation.yml` workflow (#677) * Remove "prototype" handling from `citation.yml` workflow * `preview.pdf` -> `citation-preview.pdf` --- .github/workflows/citation.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/citation.yml b/.github/workflows/citation.yml index f8cab13b2..6a018f0ff 100644 --- a/.github/workflows/citation.yml +++ b/.github/workflows/citation.yml @@ -34,36 +34,35 @@ jobs: run: | if [ -f "CITATION.bib" ]; then arr=(${GITHUB_REPOSITORY//\// }) - REPO=${arr[1]} - export PROTOTYPE=${REPO#"prototype-"} - cat <<- EOF > preview.tex + export REPO=${arr[1]} + cat <<- EOF > citation-preview.tex \documentclass[preprint,aps,physrev,notitlepage]{revtex4-2} \usepackage{hyperref} \begin{document} - \title{\texttt{$PROTOTYPE} BibTeX test} + \title{\texttt{$REPO} BibTeX test} \maketitle \noindent - \texttt{$PROTOTYPE} - \cite{$PROTOTYPE} + \texttt{$REPO} + \cite{$REPO} \bibliography{CITATION} \end{document} EOF - pdflatex preview + pdflatex citation-preview fi - name: Run BibTeX run: | if [ -f "CITATION.bib" ]; then - bibtex preview + bibtex citation-preview fi - name: Re-run LaTeX run: | if [ -f "CITATION.bib" ]; then - pdflatex preview - pdflatex preview + pdflatex citation-preview + pdflatex citation-preview fi - name: Upload PDF if: always() uses: actions/upload-artifact@v4 with: - name: preview.pdf - path: preview.pdf + name: citation-preview.pdf + path: citation-preview.pdf