We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c30c4 commit c738bfbCopy full SHA for c738bfb
.github/workflows/release_prep.sh
@@ -2,6 +2,13 @@
2
3
set -o errexit -o nounset -o pipefail
4
5
+# Don't include examples in the distribution artifact, to reduce size.
6
+# You may want to add additional exclusions for folders or files that users don't need.
7
+# NB: this mechanism relies on a `git archive` feature, which is much simpler and less
8
+# error-prone than using Bazel to build a release artifact from sources in the repository.
9
+# See https://git-scm.com/docs/git-archive#ATTRIBUTES
10
+echo >>.git/info/attributes "examples export-ignore"
11
+
12
# Set by GH actions, see
13
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
14
TAG=${GITHUB_REF_NAME}
0 commit comments