From ebdfa57d8836ee413c3cc5d6dbf2aecf3fefb603 Mon Sep 17 00:00:00 2001 From: Dusk-92 Date: Sat, 29 Aug 2026 09:39:58 +0200 Subject: [PATCH] Publish temporary V32 build asset --- .github/workflows/v32-build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/v32-build.yml b/.github/workflows/v32-build.yml index d5d7876..3cee6aa 100644 --- a/.github/workflows/v32-build.yml +++ b/.github/workflows/v32-build.yml @@ -94,6 +94,26 @@ jobs: gzip -9 -c package/DLL/outline.dll | base64 -w 76 \ > dist/outline_V32.dll.gz.b64 + - name: Publish temporary V32 download release + shell: bash + env: + GH_TOKEN: ${{ github.token }} + run: | + set -euo pipefail + tag="v32-polish32-test" + if gh release view "$tag" >/dev/null 2>&1; then + gh release upload "$tag" \ + dist/WeirdUtils_safe_core_V8_POLISH32_ORIGINAL_WeirdPerformance.zip \ + --clobber + else + git tag -f "$tag" + git push origin "refs/tags/$tag" --force + gh release create "$tag" \ + dist/WeirdUtils_safe_core_V8_POLISH32_ORIGINAL_WeirdPerformance.zip \ + --title "V32 POLISH32 temporary build" \ + --notes "Temporary compiled test artifact." + fi + - name: Commit compiled package to branch shell: bash run: |