Skip to content

Commit 493889d

Browse files
committed
Revert "Fix incorrect INSTALL_DIR"
This reverts commit d48228a.
1 parent d48228a commit 493889d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,22 @@ jobs:
3434
runs-on: ${{ matrix.os }}
3535
env:
3636
VCPKG_ROOT: '${{ github.workspace }}/vcpkg'
37-
INSTALL_DIR: 'C:\\pulsar-cpp'
37+
INSTALL_DIR: 'C:\pulsar-cpp'
3838
strategy:
3939
fail-fast: false
4040
matrix:
4141
include:
4242
- name: 'Windows x64'
4343
os: windows-2022
4444
triplet: x64-windows-static
45+
vcpkg_dir: 'C:\vcpkg'
4546
suffix: 'windows-win64'
4647
generator: 'Visual Studio 17 2022'
4748
arch: '-A x64'
4849
- name: 'Windows x86'
4950
os: windows-2022
5051
triplet: x86-windows-static
52+
vcpkg_dir: 'C:\vcpkg'
5153
suffix: 'windows-win32'
5254
generator: 'Visual Studio 17 2022'
5355
arch: '-A Win32'
@@ -105,13 +107,13 @@ jobs:
105107
106108
- name: Zip artifact
107109
shell: bash
108-
run: 7z a -tzip pulsar-client-cpp-${{ matrix.triplet }}.zip ${{ env.INSTALL_DIR }}/*
110+
run: 7z a -tzip Windows-${{ matrix.triplet }}.zip ${{ env.INSTALL_DIR }}/*
109111

110112
- name: Upload binaries to release
111113
uses: svenstaro/upload-release-action@v2
112114
with:
113115
repo_token: ${{ secrets.GITHUB_TOKEN }}
114-
file: pulsar-client-cpp-${{ matrix.triplet }}.zip
115-
asset_name: pulsar-client-cpp-${{ matrix.triplet }}.zip
116+
file: Windows-${{ matrix.triplet }}.zip
117+
asset_name: Windows-${{ matrix.triplet }}.zip
116118
tag: ${{ github.ref }}
117119
overwrite: true

0 commit comments

Comments
 (0)