Unverified Commit e9e9bdb8 authored by Daniel Hiltgen's avatar Daniel Hiltgen Committed by GitHub
Browse files

CI: Fix win arm version defect (#6940)

write-host in powershell writes directly to the console and will not be picked
up by a pipe.  Echo, or write-output will.
parent 35bb6d32
...@@ -354,7 +354,7 @@ jobs: ...@@ -354,7 +354,7 @@ jobs:
- name: Set Version - name: Set Version
run: | run: |
$ver=${env:GITHUB_REF_NAME}.trim("v") $ver=${env:GITHUB_REF_NAME}.trim("v")
write-host VERSION=$ver | Out-File -FilePath ${env:GITHUB_ENV} -Encoding utf8 -Append echo VERSION=$ver | Out-File -FilePath ${env:GITHUB_ENV} -Encoding utf8 -Append
- uses: 'google-github-actions/auth@v2' - uses: 'google-github-actions/auth@v2'
with: with:
project_id: 'ollama' project_id: 'ollama'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment