We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03eaca9 commit 1c5ab3dCopy full SHA for 1c5ab3d
.github/workflows/release.yml
@@ -15,18 +15,14 @@ jobs:
15
- name: Checkout
16
uses: actions/checkout@v2
17
- uses: bazelbuild/setup-bazelisk@v1
18
- - name: check git state is clean
19
- run: git status --porcelain
20
- name: bazel test //...
21
env:
22
# Bazelisk will download bazel to here
23
XDG_CACHE_HOME: ~/.cache/bazel-repo
24
- run:
25
- bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test
26
- --config=release //...
+ run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...
27
- name: Release
28
uses: softprops/action-gh-release@v1
29
with:
30
prerelease: true
31
files: |
32
- bazel-out/*/bin/path/to/some/output
+ bazel-out/*/bin/*.tar.gz
0 commit comments