Skip to content

Commit 3ccc018

Browse files
committed
attempt to fix arm release
This commit updates our GitHub Actions CI workflow for the "build" job to specify the OS it's built-under in the name of the release uploaded. I'm doing this because we now have two linux builds (x86_64 and aarch64 for arm), and the arm build failed saying a release with that name already exists. So I guess we need distinct names to prevent that error. It's a bit more complicated because we use a matrix to duplicate the same build, which means I can't just write the arch. So I'm using the "OS" variable from the matrix. Hopefully this works. For more info, see: * #40 (comment)
1 parent 6d999b9 commit 3ccc018

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
with:
4646
tag_name: ${{ github.run_id }}_linux
47-
release_name: 'Public Build Artifact: Linux ${{ github.run_id }}'
47+
release_name: 'Public Build Artifact: Linux ${{matrix.os}} ${{ github.run_id }}'
4848
draft: false
4949
prerelease: true
5050

0 commit comments

Comments
 (0)