From 3e2b4eef2f3f7aa5846db3c59948d653eba065a6 Mon Sep 17 00:00:00 2001 From: denis0001-dev Date: Sun, 13 Sep 2026 17:47:04 +0300 Subject: [PATCH] Fix Windows ARM64 JDK setup order; remove dispatch test workflow. Co-authored-by: Cursor --- .github/workflows/ci-dispatch-test.yml | 10 ---------- .github/workflows/release.yml | 9 +++++---- 2 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 .github/workflows/ci-dispatch-test.yml diff --git a/.github/workflows/ci-dispatch-test.yml b/.github/workflows/ci-dispatch-test.yml deleted file mode 100644 index aa3d70e..0000000 --- a/.github/workflows/ci-dispatch-test.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: CI dispatch test - -on: - workflow_dispatch: - -jobs: - ping: - runs-on: ubuntu-latest - steps: - - run: echo ok diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30b0482..c08f379 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -111,7 +111,12 @@ jobs: timeout-minutes: 60 steps: - uses: actions/checkout@v4 + - name: Ensure ARM64 packaging JDK + if: matrix.arch == 'arm64' + shell: cmd + run: call scripts\ensure-windows-arm64-jdk.cmd - uses: actions/setup-java@v4 + if: matrix.arch == 'x64' with: distribution: temurin java-version: "17" @@ -121,10 +126,6 @@ jobs: - uses: ./.github/actions/set-version with: version: ${{ needs.resolve-version.outputs.version }} - - name: Ensure ARM64 packaging JDK - if: matrix.arch == 'arm64' - shell: cmd - run: call scripts\ensure-windows-arm64-jdk.cmd - name: Restore Windows Rust installer tools uses: actions/download-artifact@v4 with: