Skip to content

Commit

Permalink
Rename //:ci-artifacts rule to //:push-build, and add a deprecated alias
Browse files Browse the repository at this point in the history
  • Loading branch information
ixdy committed May 2, 2017
1 parent 36590b0 commit 4c51d1e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ filegroup(
)

gcs_upload(
name = "ci-artifacts",
name = "push-build",
data = [
":_binary-artifacts-and-hashes",
"//build/release-tars:release-tars-and-hashes",
Expand All @@ -33,6 +33,13 @@ gcs_upload(
},
)

# TODO: remove this alias after 2017-05-22
alias(
name = "ci-artifacts",
actual = "push-build",
deprecation = "This rule will be removed after 2017-05-22. Use //:push-build instead.",
)

filegroup(
name = "package-srcs",
srcs = glob(
Expand Down

0 comments on commit 4c51d1e

Please sign in to comment.