Skip to content

Commit de10bb4

Browse files
committed
ci: upload DMG only, not .app + DMG
The DMG already contains the .app, so uploading both roughly doubles the artifact size for no benefit. Uploading only the DMG cuts the artifact from ~4.7 GB to ~2.3 GB.
1 parent cfdcb06 commit de10bb4

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/macos-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,12 +595,10 @@ jobs:
595595
596596
ls -lah "$RUNNER_TEMP/$DMG_NAME"
597597
598-
- name: Upload .app and .dmg
598+
- name: Upload DMG
599599
uses: actions/upload-artifact@v7
600600
with:
601601
name: beyond-all-reason-macos-arm64
602-
path: |
603-
${{ runner.temp }}/${{ env.APP_BUNDLE }}
604-
${{ runner.temp }}/${{ env.DMG_NAME }}
602+
path: ${{ runner.temp }}/${{ env.DMG_NAME }}
605603
if-no-files-found: error
606604
retention-days: 14

0 commit comments

Comments
 (0)