Skip to content

Commit 44dcf40

Browse files
committed
use ubuntu for release workflow
Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com>
1 parent 9e6f557 commit 44dcf40

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/CreateRelease.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# see https://github.com/orgs/community/discussions/26286#discussioncomment-3251208 for why we need to check the ref
1919
if: ${{ contains(github.ref, 'refs/heads/release/') }} || ${{ github.ref=='refs/heads/main' }}
2020
needs: [ benchmarks ]
21-
runs-on: windows-latest
21+
runs-on: ubuntu-latest
2222
env:
2323
PLATFORM: x64
2424
steps:
@@ -59,10 +59,10 @@ jobs:
5959
- name: Set HYPERLIGHTWASM_VERSION
6060
run: |
6161
git fetch --tags || true
62-
$env:MINVER_TAG_PREFIX="v"
63-
$env:MINVER_AUTO_INCREMENT_LEVEL="Minor"
64-
$env:MINVER_PRERELEASE_IDENTIFIER="preview"
65-
echo "HYPERLIGHTWASM_VERSION=$(minver)"| Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
62+
export MINVER_TAG_PREFIX="v"
63+
export MINVER_AUTO_INCREMENT_LEVEL="Minor"
64+
export MINVER_PRERELEASE_IDENTIFIER="preview"
65+
echo "HYPERLIGHTWASM_VERSION=$(minver)" >> $GITHUB_ENV
6666
echo "HYPERLIGHTWASM_VERSION=$(minver)"
6767
shell: pwsh
6868
- name: Download Wasm Modules

0 commit comments

Comments
 (0)