Skip to content

Commit 9e6f557

Browse files
committed
fix release workflow
Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com>
1 parent 1cb97ca commit 9e6f557

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/CreateReleaseBranch.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
sed -i '/vendor.tar/d' ./src/hyperlight_wasm/.gitignore
2929
git add ./src/hyperlight_wasm/vendor.tar
3030
git add ./src/hyperlight_wasm/.gitignore
31-
git commit -m "Vendor dependencies for release ${GITHUB_REF_NAME}" -s -S
31+
git config user.name hyperlight-wasm-ci
32+
git config user.email github@users.noreply.github.com
33+
git commit -s \
34+
-m "Vendor dependencies for release ${GITHUB_REF_NAME}"
3235
git push --set-upstream origin release/${GITHUB_REF_NAME}
3336
shell: bash

Justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"]
99

1010
make-vendor-tar:
1111
tar cf ./src/hyperlight_wasm/vendor.tar \
12+
--owner=0 --group=0 \
1213
--exclude-vcs-ignores \
1314
-C ./src wasm_runtime hyperlight_wasm_macro
1415

0 commit comments

Comments
 (0)