Skip to content

Commit 5adab08

Browse files
d-e-s-odanielocfb
authored andcommitted
Don't dry-run package libbpf-cargo as part of publish workflow
We can't really verify the libbpf-cargo package because it unconditionally attempts to pull libbpf-rs from crates.io, where it can't find the specified version because it has not yet been published. For the time being, make do without checking libbpf-cargo. Signed-off-by: Daniel Müller <[email protected]>
1 parent 515e3c2 commit 5adab08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
toolchain: stable
4040
override: true
4141
- name: Dry-run package creation
42-
run: cargo package --package libbpf-rs --package libbpf-cargo --locked --no-verify
42+
# Can't verify libbpf-cargo for it may depend on yet-to-be-published libbpf-rs.
43+
run: cargo package --package libbpf-rs --locked --no-verify
4344
- name: Create git tag
4445
env:
4546
version: ${{ needs.version.outputs.version }}

0 commit comments

Comments
 (0)