From 38b8185d5ff82c96525bb880d6c264a612ad1735 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Thu, 7 Sep 2023 11:28:24 +0100 Subject: [PATCH] ci(windows): try removing quotes to print env vars into file --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1514b12..c9e00f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,9 +58,9 @@ jobs: echo "APPNAME=PY_EXPANSE" > nsgrest.conf echo "URL=https://nsgr.sdsc.edu:8443/cipresrest/v1" >> nsgrest.conf - echo "USERNAME="%NSGR_USERNAME% >> nsgrest.conf - echo "PASSWORD="%NSGR_PASSWORD% >> nsgrest.conf - echo "APPID="%NSGR_APPID% >> nsgrest.conf + echo USERNAME=%NSGR_USERNAME% >> nsgrest.conf + echo PASSWORD=%NSGR_PASSWORD% >> nsgrest.conf + echo APPID=%NSGR_APPID% >> nsgrest.conf more nsgrest.conf # print contents so far...