Skip to content

Commit ad9717a

Browse files
committed
ci: check if crate can be packaged
1 parent 0e959b4 commit ad9717a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17+
- name: Check cargo package
18+
# Checks if `cargo package` can run successfully. This saves us from
19+
# situations where this is only noticed after a merge and releases
20+
# were made only partially.
21+
run: cargo package
1722
- run: |
1823
cargo install auto-release
1924
auto-release --condition body -p uefi-raw -p uefi-macros -p uefi

0 commit comments

Comments
 (0)