build: try re-enabling artifact upload (for Linux artifacts, at least)

This commit is contained in:
Marcus Holland-Moritz 2025-04-20 00:11:32 +02:00
parent 957867df5a
commit 9bcb8316fd

View File

@ -379,31 +379,42 @@ jobs:
file: ${{ runner.temp }}/dwarfs-coverage.txt file: ${{ runner.temp }}/dwarfs-coverage.txt
fail_ci_if_error: false fail_ci_if_error: false
# - name: Prepare Artifact Upload - name: Prepare Artifact Upload
# run: cat ${{ runner.temp }}/artifacts.env >> $GITHUB_ENV run: cat ${{ runner.temp }}/artifacts.env >> $GITHUB_ENV
# if: ${{ endsWith(matrix.build_type, '-static') }} if: ${{ endsWith(matrix.build_type, '-static') }}
# - name: Upload Binary Tarball - name: Upload Binary Tarball
# uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
# with: with:
# name: ${{ env.binary_tarball }} name: ${{ env.binary_tarball }}
# path: ${{ runner.temp }}/artifacts/${{ env.binary_tarball }} path: ${{ runner.temp }}/artifacts/${{ env.binary_tarball }}
# if-no-files-found: error if-no-files-found: error
# compression-level: 0 compression-level: 0
# env: env:
# ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5 ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
# if: ${{ endsWith(matrix.build_type, '-static') }} if: ${{ endsWith(matrix.build_type, '-static') }}
# - name: Upload Universal Binary - name: Upload Universal Binary
# uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
# with: with:
# name: ${{ env.universal_binary }} name: ${{ env.dwarfsuniversal_binary }}
# path: ${{ runner.temp }}/artifacts/${{ env.universal_binary }} path: ${{ runner.temp }}/artifacts/${{ env.dwarfsuniversal_binary }}
# if-no-files-found: error if-no-files-found: error
# compression-level: 0 compression-level: 0
# env: env:
# ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5 ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
# if: ${{ endsWith(matrix.build_type, '-static') }} if: ${{ endsWith(matrix.build_type, '-static') }}
- name: Upload Fuse-Extract Binary
uses: actions/upload-artifact@v4
with:
name: ${{ env.dwarfsfuseextract_binary }}
path: ${{ runner.temp }}/artifacts/${{ env.dwarfsfuseextract_binary }}
if-no-files-found: error
compression-level: 0
env:
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
if: ${{ endsWith(matrix.build_type, '-static') }}
macos: macos:
needs: package-source needs: package-source