Skip to content

Commit

Permalink
fix: windows errors
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed May 31, 2024
1 parent 2c4cbed commit f906d84
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test-mock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
Set-PSDebug -Trace 2
cd .\scripts
.\builder.ps1
echo "KSCTL_BIN=.\$env:LOCALAPPDATA\ksctl\ksctl.exe" >> "${GITHUB_ENV}"
echo "KSCTL_BIN=.\$env:LOCALAPPDATA\ksctl\ksctl.exe" >> $env:GITHUB_ENV
# $env:KSCTL_BIN="$env:LOCALAPPDATA\ksctl\ksctl.exe"
# echo "KSCTL_BIN=$env:KSCTL_BIN" >> $env:GITHUB_ENV
- name: build ksctl linux
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand All @@ -66,6 +68,9 @@ jobs:
make install_macos_intel
echo "KSCTL_BIN=ksctl" >> "${GITHUB_ENV}"
- name: Print GITHUB_ENV
run: cat $GITHUB_ENV

- name: version
run: |
${{ env.KSCTL_BIN }} version
Expand Down

0 comments on commit f906d84

Please sign in to comment.