Skip to content

Commit 1b701e3

Browse files
authored
Fixed the release artifacts package file name (#57)
### Motivation Because of the typo in the variable name, the packages end up with the same name for both x86_64 and arm64 and GH action is merging them. It's mainly a problem for Deb packages since the files don't have the arch in the file names.
1 parent dd1481b commit 1b701e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-build-binary-artifacts.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ jobs:
7575
- name: Upload artifacts
7676
uses: actions/upload-artifact@v3
7777
with:
78-
name: ${{matrix.pkg.type}}-${{matrix.pkg.platform}}
78+
name: ${{matrix.pkg.type}}-${{matrix.cpu.platform}}
7979
path: ${{matrix.pkg.path}}

0 commit comments

Comments
 (0)