Skip to content

Commit

Permalink
ci(windows): try removing quotes to print env vars into file
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Sep 7, 2023
1 parent fb76159 commit 38b8185
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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...
Expand Down

0 comments on commit 38b8185

Please sign in to comment.