ci: fix apple artifact upload (#8753)

This commit is contained in:
Thomas Eizinger
2025-04-11 23:33:43 +10:00
committed by GitHub
parent d2fd57a3b6
commit 7791fc143a
2 changed files with 4 additions and 2 deletions

View File

@@ -105,10 +105,10 @@ jobs:
TEMP_DIR: "${{ runner.temp }}"
- name: Upload package artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: "${{ matrix.job_name == 'build-macos-standalone' }}"
with:
name: ${{ matrix.artifact-file }}
path: |
"${{ runner.temp }}/${{ matrix.artifact-file }}"
path: "${{ runner.temp }}/${{ matrix.artifact-file }}"
- run: ${{ matrix.upload-script }}
if: "${{ github.event_name == 'workflow_dispatch' }}"
env:

View File

@@ -126,4 +126,6 @@ fi
# Move to final location the uploader expects
if [[ -n "${ARTIFACT_PATH:-}" ]]; then
mv "$dmg_path" "$ARTIFACT_PATH"
echo "Moved disk image to $ARTIFACT_PATH"
fi