We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e801c8f commit df14aa0Copy full SHA for df14aa0
.github/workflows/check-releasability.yml
@@ -51,6 +51,20 @@ jobs:
51
feature_list=`toml get Cargo.toml features | jq -c 'keys'`
52
echo "features=$feature_list" >> $GITHUB_OUTPUT
53
54
+ owner-check:
55
+ name: Check
56
+ needs: [split-crates]
57
+ runs-on: ubuntu-latest
58
+ strategy:
59
+ fail-fast: false
60
+ matrix:
61
+ crate: ${{ fromJSON(needs.split-crates.outputs.crates) }}
62
+ owner: ["Carter Anderson", "github:bevyengine:publish"]
63
+ steps:
64
+ - name: check owner
65
+ run: |
66
+ cargo owner --list ${{ matrix.crate }} | grep ${{ matrix.owner }}
67
+
68
crate-check:
69
name: Check
70
needs: [split-crates]
0 commit comments