From 83daefd3bc98ea88160aa78a0bddb573dd07bac6 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Wed, 28 Jan 2026 17:28:00 -0800 Subject: [PATCH] Update GitHub Actions workflow for release process - Re-enabled the pull_request trigger for specific paths to enhance workflow automation. - Updated macOS build hosts to use specific versions (macos-15-arm64 and macos-15-intel) for improved compatibility and performance during the release process. --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7238b8342..b86e65bdd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,10 +4,10 @@ on: push: tags: - "v*" - # pull_request: - # paths: - # - ".github/workflows/release.yml" - # - ".github/actions/publish-artifacts/**" + pull_request: + paths: + - ".github/workflows/release.yml" + - ".github/actions/publish-artifacts/**" workflow_dispatch: # From: https://github.com/rust-lang/rust-analyzer/blob/master/.github/workflows/release.yaml#L13-L21 @@ -234,12 +234,12 @@ jobs: matrix: settings: # macOS builds - - host: self-hosted + - host: macos-15-arm64 target: aarch64-apple-darwin bundles: dmg,app os: darwin arch: aarch64 - - host: self-hosted + - host: macos-15-intel target: x86_64-apple-darwin bundles: dmg,app os: darwin