Skip to content

Commit

Permalink
fix searching for lib
Browse files Browse the repository at this point in the history
  • Loading branch information
ameknite committed Mar 15, 2024
1 parent 82c4a05 commit 79836bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cargo_semver_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- name: Searching for lib
id: searching
run: |
result=$(cargo metadata --format-version=1 --no-deps | jql '"packages"|>"targets"<|[0]|>"kind"' | jql '..' -i)
result=$(cargo metadata --format-version=1 --no-deps | jql '"packages"|>"targets"<|[0]|>"kind"' | jql '..' -i);
echo "targets"=$result" >> "$GITHUB_OUTPUT";
echo $result
echo $result;
- name: print-info - skip cargo-semver-checks
if: ${{ contains(steps.searching.outputs.targets, 'lib') }}
Expand Down

0 comments on commit 79836bd

Please sign in to comment.