www

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

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

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

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

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -24,7 +24,6 @@ jobs: env: # RACKET_DIR is an argument to install-racket.sh RACKET_DIR: ~/racket - PATH: "$RACKET_DIR/bin:$PATH" RACKET_VERSION: ${{ matrix.racket }} RACKET_CS: ${{ matrix.racket_cs }} DEPLOY: true @@ -43,7 +42,9 @@ jobs: echo "$DEPLOY" echo "GITHUB_WORKSPACE" - name: Install Racket - run: curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash + 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