Skip to content

Commit 6aeb381

Browse files
[ci] Fix upload-artifact v3 is not supported (#484)
1 parent eede80b commit 6aeb381

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
run: zip -r ${{matrix.pkg.type}}-${{matrix.cpu.platform}}.zip ${{matrix.pkg.path}}
7777

7878
- name: Upload artifacts
79-
uses: actions/upload-artifact@v3
79+
uses: actions/upload-artifact@master
8080
with:
8181
name: ${{matrix.pkg.type}}-${{matrix.cpu.platform}}
8282
path: ${{matrix.pkg.path}}
@@ -162,7 +162,7 @@ jobs:
162162
run: 7z a -tzip pulsar-client-cpp-${{ matrix.triplet }}.zip ${{ env.INSTALL_DIR }}/*
163163

164164
- name: Upload artifacts
165-
uses: actions/upload-artifact@v3
165+
uses: actions/upload-artifact@master
166166
with:
167167
name: ${{ matrix.triplet }}
168168
path: ${{ env.INSTALL_DIR }}
@@ -190,7 +190,7 @@ jobs:
190190
run: 7z a -tzip pulsar-client-cpp-${{ matrix.triplet }}-Debug.zip ${{ env.INSTALL_DIR }}-Debug/*
191191

192192
- name: Upload artifacts (Debug)
193-
uses: actions/upload-artifact@v3
193+
uses: actions/upload-artifact@master
194194
with:
195195
name: ${{ matrix.triplet }}-Debug
196196
path: ${{ env.INSTALL_DIR }}-Debug
@@ -224,7 +224,7 @@ jobs:
224224
cp macos-${{ matrix.arch }}.zip ../../../
225225
226226
- name: Upload artifacts
227-
uses: actions/upload-artifact@v3
227+
uses: actions/upload-artifact@master
228228
with:
229229
name: macos-${{ matrix.arch }}.zip
230230
path: macos-${{ matrix.arch }}.zip

0 commit comments

Comments
 (0)