Skip to content

Commit ed0eefe

Browse files
committed
fix(ci): ensure binaries are correctly uploaded
1 parent 9c37e67 commit ed0eefe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/snos-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,14 +209,14 @@ jobs:
209209
# We move binaries so they match $TARGETPLATFORM in the Docker build
210210
# Only move native binaries for Docker (we want the native version for Docker)
211211
- name: Move binaries for Docker
212-
if: ${{ env.PLATFORM_NAME == 'linux' && matrix.job.native_build == true }}
212+
if: ${{ env.PLATFORM_NAME == 'linux' }}
213213
shell: bash
214214
run: |
215215
mkdir -p $PLATFORM_NAME/$ARCH
216216
mv target/${TARGET}/performance/katana $PLATFORM_NAME/$ARCH
217217
218218
- name: Upload Docker binaries
219-
if: ${{ env.PLATFORM_NAME == 'linux' && matrix.job.native_build == true }}
219+
if: ${{ env.PLATFORM_NAME == 'linux' }}
220220
uses: actions/upload-artifact@v4
221221
with:
222222
name: binaries-${{ matrix.job.target }}

0 commit comments

Comments
 (0)