Skip to content

Commit 8f1c24e

Browse files
committed
Disable compressing of build artifacts by GitHub
1 parent 41f250c commit 8f1c24e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,11 @@ jobs:
176176

177177
- name: Upload GitHub Actions artifacts of build logs
178178
if: always()
179-
uses: actions/upload-artifact@v4
179+
uses: actions/upload-artifact@v7
180180
with:
181181
name: logs-${{ matrix.deps_name }}
182182
path: ${{ matrix.vcpkg_path }}/buildtrees/**/*.log
183+
archive: false
183184

184185
- name: Create buildenv archive
185186
run: ./vcpkg export --vcpkg-root=${{ matrix.vcpkg_path }} --x-all-installed --zip --output=${{ env.DEPS_BASE_NAME }}-${{ env.MIXXX_VERSION }}-${{ matrix.deps_name }}-${{ steps.vars.outputs.sha_short }} --output-dir=${{ matrix.vcpkg_path }}
@@ -226,10 +227,11 @@ jobs:
226227
UPLOAD_ID: ${{ github.run_id }}
227228

228229
- name: Upload GitHub Actions artifacts
229-
uses: actions/upload-artifact@v4
230+
uses: actions/upload-artifact@v7
230231
with:
231232
name: ${{ env.DEPS_BASE_NAME }}-${{ env.MIXXX_VERSION }}-${{ matrix.deps_name }}-${{ steps.vars.outputs.sha_short }}
232233
path: ${{ matrix.vcpkg_path }}/${{ env.DEPS_BASE_NAME }}-${{ env.MIXXX_VERSION }}-${{ matrix.deps_name }}-${{ steps.vars.outputs.sha_short }}.zip
234+
archive: false
233235

234236
# Workaround for https://github.com/actions/cache/issues/531
235237
- name: Use system tar & zstd from Chocolatey for caching

0 commit comments

Comments
 (0)