Skip to content

Commit

Permalink
Fix missing bzlmod extensions (#3050)
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre authored Dec 5, 2024
1 parent b27bf62 commit b6ee4f9
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
7 changes: 6 additions & 1 deletion .bcr/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
fixedReleaser:
login: scentini
email: [email protected]
moduleRoots: [".", "extensions"]
moduleRoots:
- "."
- "extensions/bindgen"
- "extensions/prost"
- "extensions/protobuf"
- "extensions/wasm_bindgen"
2 changes: 1 addition & 1 deletion .bcr/extensions/bindgen/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/bindgen",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/bindgen",
"maintainers": [
{
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion .bcr/extensions/prost/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/prost",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/prost",
"maintainers": [
{
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion .bcr/extensions/protobuf/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/protobuf",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/protobuf",
"maintainers": [
{
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion .bcr/extensions/wasm_bindgen/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/bazelbuild/rules_rust/extensions/wasm_bindgen",
"homepage": "https://github.com/bazelbuild/rules_rust/tree/main/extensions/wasm_bindgen",
"maintainers": [
{
"email": "[email protected]",
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,12 @@ jobs:
# `examples/bzlmod` is included for the BCR presubmit; it must appear before --exclude="examples"
tar -czf ${{ github.workspace }}/.github/rules_rust.tar.gz \
-C ${{ github.workspace }} \
--exclude=".git" --exclude=".github" \
--exclude=".git" \
--exclude=".github" \
--exclude="crate_universe/target" \
--exclude="extensions" \
examples/bzlmod \
--exclude="examples" \
--exclude="extensions" \
.
# Save the sha256 checksum of the distro archive to the environment
Expand Down

0 comments on commit b6ee4f9

Please sign in to comment.