From 1f7412cc3c48ffca5df599b064fe4503ec8d9426 Mon Sep 17 00:00:00 2001 From: Elise Chouleur Date: Mon, 30 Oct 2023 16:04:24 +0100 Subject: [PATCH] update publish and use marketplace action to publish all dependencies --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92d8a8e4..0ed155d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,6 @@ jobs: uses: actions/checkout@v4 - name: Publish release - run: cargo publish --token ${CRATES_TOKEN} - env: - CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} + uses: katyo/publish-crates@v2 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}