mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 09:09:47 +00:00
[CI] Attempt to fix artifact paths
This commit is contained in:
parent
f9447990dc
commit
7c0c195ed3
12
.github/workflows/dev-desktop-builds.yml
vendored
12
.github/workflows/dev-desktop-builds.yml
vendored
|
@ -52,8 +52,8 @@ jobs:
|
|||
- name: Upload Artifact 🚀
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${EXPORT_NAME}-Windows-64bit
|
||||
path: ./build/${EXPORT_NAME}-Windows-64bit/
|
||||
name: ${{env.EXPORT_NAME}}-Windows-64bit
|
||||
path: ./build/${{env.EXPORT_NAME}}-Windows-64bit/
|
||||
retention-days: 14
|
||||
|
||||
export-linux:
|
||||
|
@ -87,8 +87,8 @@ jobs:
|
|||
- name: Upload Artifact 🚀
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${EXPORT_NAME}-Linux-64bit
|
||||
path: ./build/${EXPORT_NAME}-Linux-64bit.tar.gz
|
||||
name: ${{env.EXPORT_NAME}}-Linux-64bit
|
||||
path: ./build/${{env.EXPORT_NAME}}-Linux-64bit.tar.gz
|
||||
retention-days: 14
|
||||
|
||||
export-mac:
|
||||
|
@ -138,6 +138,6 @@ jobs:
|
|||
- name: Upload Artifact 🚀
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${EXPORT_NAME}-Mac
|
||||
path: ./build/mac/${EXPORT_NAME}.dmg
|
||||
name: ${{env.EXPORT_NAME}}-Mac
|
||||
path: ./build/mac/${{env.EXPORT_NAME}}.dmg
|
||||
retention-days: 14
|
||||
|
|
Loading…
Reference in a new issue