www

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

commit a6c9e6a64221b748e6221460bf07e209c091f100
parent 50aacd3c17181b189fba8ec175449261b1dc9ce1
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date:   Sun,  4 Jul 2021 04:01:19 +0100

Give up on obtaining the home folder location within a GitHub Actions "env"

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

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -23,7 +23,6 @@ jobs: racket_cs: 1 env: # RACKET_DIR is an argument to install-racket.sh - RACKET_DIR: ${{ env.HOME }}/racket RACKET_VERSION: ${{ matrix.racket }} RACKET_CS: ${{ matrix.racket_cs }} DEPLOY: true @@ -35,10 +34,9 @@ jobs: 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" + printf %s "$HOME/racket/bin" >> "$GITHUB_PATH" - name: Print environment variables run: | - echo "$RACKET_DIR" echo "$PATH" echo "$RACKET_VERSION" echo "$RACKET_CS"