fix paths in macos CI
This commit is contained in:
parent
6cbf78be6b
commit
092fc616e6
1 changed files with 6 additions and 5 deletions
11
.github/workflows/macos.yml
vendored
11
.github/workflows/macos.yml
vendored
|
|
@ -36,17 +36,18 @@ jobs:
|
||||||
- name: Upload App
|
- name: Upload App
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: Nexus.App
|
name: Nexus.app
|
||||||
path: build/macos/Build/Products/Release/Nexus.app
|
path: build/macos/Build/Products/Release/Nexus.app
|
||||||
|
|
||||||
- name: Create DMG
|
- name: Create DMG
|
||||||
|
id: create-dmg
|
||||||
uses: L-Super/create-dmg-actions@v1
|
uses: L-Super/create-dmg-actions@v1
|
||||||
with:
|
with:
|
||||||
dmg_name: nexus.dmg
|
dmg_name: nexus
|
||||||
src_dir: Nexus.app
|
src_dir: build/macos/Build/Products/Release/Nexus.app
|
||||||
|
|
||||||
- name: Upload DMG
|
- name: Upload DMG
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.create-dmg.inputs.path }}
|
name: nexus.dmg
|
||||||
path: ${{ github.workspace }}/${{ steps.create-dmg.outputs.dmg_path }}
|
path: "${{ steps.create-dmg.outputs.dmg_path }}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue