Skip to content

Commit

Permalink
github/workflows/nightly: fix release filename
Browse files Browse the repository at this point in the history
GitHub action yaml attributes use `${{ env.VAR }}` to access env variables; but since we need a lowercase version use a wildcard to capture the arch dependent parts of the filename.

PiperOrigin-RevId: 622167553
  • Loading branch information
proppy authored and copybara-github committed Apr 5, 2024
1 parent 444f086 commit c93d25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-ubuntu-22.04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
target_commitish: ${{ github.sha }} # needed for the release to create the tag.
files: bazel-bin/dist/xls-${{ env.VERSION}}-${RUNNER_OS@L}-${RUNNER_ARCH@L}.tar.gz
files: bazel-bin/dist/xls-${{ env.VERSION }}-*.tar.gz

- name: Clean Bazel Cache
run: |
Expand Down

0 comments on commit c93d25c

Please sign in to comment.