Skip to content

Commit

Permalink
Change publish action (#1264)
Browse files Browse the repository at this point in the history
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!).
  • Loading branch information
digorithm committed Jan 29, 2024
1 parent 3d42f18 commit 7caf8af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}

0 comments on commit 7caf8af

Please sign in to comment.