Skip to content

Commit

Permalink
Fix env
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jun 3, 2024
1 parent ec3c289 commit a2b6dc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
- name: Windows Environment
if: runner.os == 'Windows'
run: |
echo "Platform=x64" >> $GITHUB_ENV
echo "Configuration=Release" >> $GITHUB_ENV
echo "IceHome=${{github.workspace}}\ice" >> $GITHUB_ENV
echo "ICE_HOME=${{github.workspace}}\ice" >> $GITHUB_ENV
echo "Platform=x64" >> $env:GITHUB_ENV
echo "Configuration=Release" >> $env:GITHUB_ENV
echo "IceHome=${{github.workspace}}\ice" >> $env:GITHUB_ENV
echo "ICE_HOME=${{github.workspace}}\ice" >> $env:GITHUB_ENV
- name: Linux/MacOS Environment
if: runner.os != 'Windows'
Expand Down

0 comments on commit a2b6dc6

Please sign in to comment.