www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit bbd2c7ae846739e5457004a312d60f3a125745b7
parent eba9e15c7425b72a10e8281d67b73e86e2eb7afd
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date:   Sun,  4 Jul 2021 03:44:26 +0100

Do the *very* weird ting that GitHub Actions require to add to $PATH apparently…

Diffstat:
M.github/workflows/ci.yml | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -33,6 +33,9 @@ jobs: # texlive-latex3 on 12.04, texlive-latex-recommended on more recent versions of Ubuntu. # Some version (16.04?) needed these packages: pgf texlive-latex3 latex-xcolor run: sudo apt install texlive-latex-base texlive-fonts-extra texlive-fonts-recommended texlive-latex-extra texlive-latex-recommended + - name: Add to $PATH + run: | + printf %s "$RACKET_DIR/bin" >> "$GITHUB_PATH" - name: Print environment variables run: | echo "$RACKET_DIR" @@ -44,7 +47,6 @@ jobs: - name: Install Racket run: | curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash - printf %s "$RACKET_DIR/bin:$PATH" >> "$GITHUB_PATH" - name: Install Scribble # Install custom version of scribble-lib which includes fixes for bibted-related problems which have not merged upstream yet. Also includes extended support for highlighting Racket code. run: raco pkg install --force --name scribble-lib https://github.com/jsmaniac/hyper-literate.git?path=scribble-lib#my-changes