From d3c8e652529586233507011c126c0ca6a5cc1f2e Mon Sep 17 00:00:00 2001 From: Yan Liu Date: Mon, 27 Jan 2025 07:42:10 +0100 Subject: [PATCH] fix(ci): Do not require cargo check to succeed to mark a release successful --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18abe7a..f475208 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,7 +112,7 @@ jobs: for toml in $(find . -name "Cargo.toml"); do sed -i "s/^version = \".*\"/version = \"$VERSION\"/" "$toml" done - cargo check + timeout 10 cargo check || true - name: Create Pull Request uses: peter-evans/create-pull-request@v5