fix paths in macos CI
This commit is contained in:
parent
6cbf78be6b
commit
2fda4a43ae
1 changed files with 6 additions and 4 deletions
10
.github/workflows/macos.yml
vendored
10
.github/workflows/macos.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue