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: