Skip to content

Commit eb399be

Browse files
authored
🐛 environment variable access in powershell (#97)
* 🐛 environment variable access in powershell * 🐛 remove $ sign after $env: for powershell * 🎨 one-liner, remove hard-coded tag for testing
1 parent 8db23e3 commit eb399be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/cdci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ jobs:
187187
env:
188188
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
189189
run: |
190-
echo GITHUB_REF_NAME $GITHUB_REF_NAME
190+
echo "GITHUB_REF_NAME in env $env:GITHUB_REF_NAME"
191+
$GITHUB_REF_NAME = $env:GITHUB_REF_NAME
191192
echo "Uploading vuegen_gui_${{ matrix.os.label }} to release $GITHUB_REF_NAME"
192193
echo "Available files in build folder: gui/dist/"
193194
ls gui/dist/

0 commit comments

Comments
 (0)