From 2fda4a43aea0da3348d494c4eded47c325a94777 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Tue, 11 Aug 2026 19:27:50 -0400 Subject: [PATCH] fix paths in macos CI --- .github/workflows/macos.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 503a740..29915ce 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -34,19 +34,21 @@ jobs: flutter build macos --release - name: Upload App + id: upload-app uses: actions/upload-artifact@v6 with: name: Nexus.App path: build/macos/Build/Products/Release/Nexus.app - name: Create DMG + id: create-dmg uses: L-Super/create-dmg-actions@v1 with: - dmg_name: nexus.dmg - src_dir: Nexus.app + dmg_name: nexus + src_dir: ${{ steps.upload-app.inputs.path }} - name: Upload DMG uses: actions/upload-artifact@v6 with: - name: ${{ steps.create-dmg.inputs.path }} - path: ${{ github.workspace }}/${{ steps.create-dmg.outputs.dmg_path }} + name: nexus.dmg + path: ${{ steps.create-dmg.outputs.dmg_path }}