diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 503a740..c7cfd2e 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -36,17 +36,18 @@ jobs: - name: Upload App uses: actions/upload-artifact@v6 with: - name: Nexus.App + 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: build/macos/Build/Products/Release/Nexus.app - 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 }}"