diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index d19f5ea..4a04d59 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -32,9 +32,10 @@ jobs: - name: Check binary versions run: | - file wimboot | grep "version ${TAG}," - file src/wimboot.i386 | grep "version ${TAG}," - file src/wimboot.x86_64 | grep "version ${TAG}," + grep --binary "wimboot ${TAG} --" wimboot + grep --binary "wimboot ${TAG} --" src/wimboot.i386 + grep --binary "wimboot ${TAG} --" src/wimboot.x86_64 + grep --binary "wimboot ${TAG} --" src/wimboot.arm64 - name: Extract changes run: | @@ -46,6 +47,7 @@ jobs: run: | BIN=${DOWNLOAD}/${TAG}/wimboot BIN_I386=${DOWNLOAD}/${TAG}/wimboot.i386 + BIN_ARM64=${DOWNLOAD}/${TAG}/wimboot.arm64 cat > NOTES.md <