Skip to content

Commit

Permalink
use cargo package instead of cargo publish --dry-run
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed Sep 17, 2024
1 parent 072f90a commit b9fedc9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:

- run: cargo doc --no-deps

- name: dry-run cargo publish librclone-sys
run: cargo publish --allow-dirty --no-verify --dry-run
- name: dry-run cargo package librclone-sys
run: cargo package --allow-dirty --no-verify
working-directory: "librclone-sys"

- name: dry-run cargo publish librclone
run: cargo publish --no-verify --dry-run
- name: dry-run cargo package librclone
run: cargo package --no-verify

publish:
needs: [test]
Expand Down

0 comments on commit b9fedc9

Please sign in to comment.