We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From bazel-contrib/SIG-rules-authors#11 I learned that it's overkill for us to build a distribution artifact.
The only reasons to bother are:
bazel query @aspect_bazel_lib//...
load()
All my remaining reasons for it turned out to be wrong. Trying the simplification here.
Proof of what we need to do when generating a workspace snippet:
alexeagle@system76-pc:~/Projects/bazel-lib$ git archive --format=tar --prefix=bazel-lib-0.2.7/ v0.2.7 | gzip > /tmp/tarball.tgz; sha256sum /tmp/tarball.tgz ce379ba06f861f5cab773862fc8eaeff3a531e744e2076165f4bbef4cb7ac046 /tmp/tarball.tgz alexeagle@system76-pc:~/Projects/bazel-lib$ curl -L https://github.com/aspect-build/bazel-lib/archive/v0.2.7.tar.gz|sha256sum - % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 130 100 130 0 0 431 0 --:--:-- --:--:-- --:--:-- 430 100 29335 0 29335 0 0 43588 0 --:--:-- --:--:-- --:--:-- 43588 ce379ba06f861f5cab773862fc8eaeff3a531e744e2076165f4bbef4cb7ac046 -
/cc @cgrindel
The text was updated successfully, but these errors were encountered:
refactor: simplify release
f367702
Fixes #12
refactor: simplify release (#13)
1c5fb63
Successfully merging a pull request may close this issue.
From bazel-contrib/SIG-rules-authors#11 I learned that it's overkill for us to build a distribution artifact.
The only reasons to bother are:
bazel query @aspect_bazel_lib//...
and not trip on ourload()
statement from stardoc. But users ~never do that.All my remaining reasons for it turned out to be wrong. Trying the simplification here.
Proof of what we need to do when generating a workspace snippet:
/cc @cgrindel
The text was updated successfully, but these errors were encountered: