We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1590157 commit bb022c1Copy full SHA for bb022c1
.github/workflows/release.yml
@@ -46,7 +46,8 @@ jobs:
46
- name: Prepare outputs from platform run
47
run: ./ci_scripts/prepare_output.sh bazel-deps.jar bazel-deps.jar staging-directory
48
- uses: actions/upload-artifact@master
49
- if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
+ # we only need to upload bazel-deps.jar one time, and it will error if we try twice
50
+ if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') && matrix.os == 'ubuntu-20.04'
51
with:
52
name: bazel-deps.jar
53
path: staging-directory
0 commit comments