From 0b1c048fcb827bb49d6e185f3c81a6ce194af9e4 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Tue, 27 May 2025 19:26:56 -0400 Subject: [PATCH] ci: fix building linux musl on non-release changes --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c337e38d..b685c699 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -105,7 +105,7 @@ jobs: build-linux-musl-x64: needs: pre_job - # if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/') + if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/') name: Linux Alpine x86_64 runs-on: ubuntu-22.04