commit 443962b60f9460548a6a9c9cf94f8d19c190bf4a
parent 8191e087835f7d83a26b7fcfa173dd5078802670
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date: Sun, 4 Jul 2021 04:37:15 +0100
GitHub Actions still turn strings into numbers, try to fix this
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -23,8 +23,8 @@ jobs:
racket_cs: 1
env:
# RACKET_DIR is an argument to install-racket.sh
- RACKET_VERSION: ${{ matrix.racket }}
- RACKET_CS: ${{ matrix.racket_cs }}
+ RACKET_VERSION: "${{ matrix.racket }}"
+ RACKET_CS: "${{ matrix.racket_cs }}"
DEPLOY: true
steps:
- uses: actions/checkout@v2