This is an automated email from the ASF dual-hosted git repository.
xyz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-cpp.git
The following commit(s) were added to refs/heads/main by this push:
new 1b701e3 Fixed the release artifacts package file name (#57)
1b701e3 is described below
commit 1b701e335772b8e7133aaa8524e6c15ab4828ab4
Author: Matteo Merli <[email protected]>
AuthorDate: Thu Oct 20 23:55:47 2022 -0700
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.
---
.github/workflows/ci-build-binary-artifacts.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci-build-binary-artifacts.yaml
b/.github/workflows/ci-build-binary-artifacts.yaml
index f2a931e..7c0a001 100644
--- a/.github/workflows/ci-build-binary-artifacts.yaml
+++ b/.github/workflows/ci-build-binary-artifacts.yaml
@@ -75,5 +75,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
- name: ${{matrix.pkg.type}}-${{matrix.pkg.platform}}
+ name: ${{matrix.pkg.type}}-${{matrix.cpu.platform}}
path: ${{matrix.pkg.path}}