We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e959b4 commit ad9717aCopy full SHA for ad9717a
.github/workflows/release.yml
@@ -14,6 +14,11 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- 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
22
- run: |
23
cargo install auto-release
24
auto-release --condition body -p uefi-raw -p uefi-macros -p uefi
0 commit comments