From 7caf8af951ea99b28e89eb4b535466daef1bbc3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Mon, 29 Jan 2024 12:36:06 -0800 Subject: [PATCH] Change publish action (#1264) Due to recent changes in the action used to publish our crates, cyclic dependencies were being poorly handled, resulting in our CI failing to publish the `0.55` version. This PR changes the action, replacing the original one with the one forked and maintained by @xgreenx (thanks, green!). --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 763ead3d5..918d05e43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -137,7 +137,7 @@ jobs: toolchain: ${{ env.RUST_VERSION }} - name: Publish crate check - uses: katyo/publish-crates@v2 + uses: xgreenx/publish-crates@v1 with: dry-run: true check-repo: false @@ -279,7 +279,7 @@ jobs: mv ./dasel /usr/local/bin/dasel ./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} Cargo.toml - name: Publish crate - uses: katyo/publish-crates@v2 + uses: xgreenx/publish-crates@v1 with: publish-delay: 30000 registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}