Skip to content

Commit

Permalink
try remote-exec
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn committed Sep 22, 2023
1 parent 16761a5 commit a908134
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cat >.git/info/attributes <<EOF
# Omit folders that users don't need, making the distribution artifact smaller
lib/tests export-ignore
# Substitution for the _VERSION_PRIVATE placeholder at the top of this file
# Substitution for the _VERSION_PRIVATE placeholder
tools/version.bzl export-subst
EOF

Expand Down
9 changes: 5 additions & 4 deletions tools/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ multi_platform_go_binaries(

release(
name = "release",
tags = ["manual"],
tags = [
"manual",
"no-remote-exec",
],
targets = [
":copy_directory",
":copy_to_directory",
Expand All @@ -59,7 +62,5 @@ write_source_files(
files = {
"integrity.bzl": ":release_versions",
},
tags = [
"no-remote",
] + (["manual"] if not is_bazel_6_or_greater() else []),
tags = (["manual"] if not is_bazel_6_or_greater() else []),
)

0 comments on commit a908134

Please sign in to comment.