From cacde5bd02c2efa3864a4eb9cb616b1a98a93644 Mon Sep 17 00:00:00 2001 From: Loong Date: Fri, 2 Aug 2024 13:56:47 +0100 Subject: [PATCH] ci: run publish workflow on ubuntu instead of macos The macos runner might be busy and the workflow might not run in time. --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 19e82e2..db43ad6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,9 @@ on: jobs: pr-pull: if: contains(github.event.pull_request.labels.*.name, 'Automerge') - runs-on: macos-14 + runs-on: ubuntu-22.04 + container: + image: ghcr.io/homebrew/ubuntu22.04:master permissions: actions: read pull-requests: write