From 7415033f4bbb38a9fa916805d943dfa3311c3099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Duquette?= Date: Mon, 22 Jun 2026 11:06:33 -0400 Subject: [PATCH] ci: publish the crate devolutions-crypto explicitly cargo publish attempts to publish devolutions-crypto-python. The publish step fails with "Trusted Publishing tokens do not support creating new crates. Publish the crate manually, first". This crate does not need to be published. --- .github/workflows/release-others.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-others.yml b/.github/workflows/release-others.yml index b60699a1..4ddf157c 100644 --- a/.github/workflows/release-others.yml +++ b/.github/workflows/release-others.yml @@ -119,9 +119,9 @@ jobs: working-directory: ./rust-release run: | if [ '${{ inputs.publish_dry_run }}' == 'true' ]; then - cargo publish --dry-run + cargo publish -p devolutions-crypto --dry-run else - cargo publish + cargo publish -p devolutions-crypto git tag "rust-v${{ steps.version.outputs.version_native }}" git push origin "rust-v${{ steps.version.outputs.version_native }}"