Skip to content

Commit 6532303

Browse files
committed
fix: always show package contents
1 parent 1d9a760 commit 6532303

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343
run: make build
4444

4545
- name: publish crate
46-
run: cargo publish -p http-server --dry-run --allow-dirty
46+
run: |
47+
cargo package --list --allow-dirty
48+
cargo publish -p http-server --dry-run --allow-dirty
4749
4850
release:
4951
name: Create Release
@@ -90,7 +92,9 @@ jobs:
9092
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
9193

9294
- name: Publish crate
93-
run: cargo publish -p http-server --allow-dirty
95+
run: |
96+
cargo package --list --allow-dirty
97+
cargo publish -p http-server --allow-dirty
9498
9599
- name: Create Release
96100
id: create_release

0 commit comments

Comments
 (0)