Skip to content

Commit 548637b

Browse files
Allow publishing releases without macos-tests (#4853)
This PR allows bypassing the `macos-test` CI job to publish new K releases. The release workflow started failing in the `macos-build` job as of this PR: #4850 The failure seems unrelated to the changes introduced by the PR and looks more like a flakiness issue in the CI due to non-deterministic dependency resolution. A follow-up PR fixed the `macos-build` job: #4851 Unfortunately, the workflow is now failing in the `macos-test` job. #4852 is an attempt to debug and fix the tests. The inability to publish new K-releases is currently blocking important updates on Simbolik.
1 parent 5e6300b commit 548637b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ jobs:
511511
name: 'Publish Release'
512512
runs-on: [self-hosted, linux, normal]
513513
environment: production
514-
needs: [cachix-release, cachix-release-dependencies, macos-test, source-tarball, ubuntu-jammy, ubuntu-noble, set-release-id]
514+
needs: [cachix-release, cachix-release-dependencies, source-tarball, ubuntu-jammy, ubuntu-noble, set-release-id]
515515
steps:
516516
- name: 'Check out code'
517517
uses: actions/checkout@v4

0 commit comments

Comments
 (0)