mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +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 🚀
|
- name: Upload Artifact 🚀
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${EXPORT_NAME}-Windows-64bit
|
name: ${{env.EXPORT_NAME}}-Windows-64bit
|
||||||
path: ./build/${EXPORT_NAME}-Windows-64bit/
|
path: ./build/${{env.EXPORT_NAME}}-Windows-64bit/
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
|
|
||||||
export-linux:
|
export-linux:
|
||||||
|
@ -87,8 +87,8 @@ jobs:
|
||||||
- name: Upload Artifact 🚀
|
- name: Upload Artifact 🚀
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${EXPORT_NAME}-Linux-64bit
|
name: ${{env.EXPORT_NAME}}-Linux-64bit
|
||||||
path: ./build/${EXPORT_NAME}-Linux-64bit.tar.gz
|
path: ./build/${{env.EXPORT_NAME}}-Linux-64bit.tar.gz
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
|
|
||||||
export-mac:
|
export-mac:
|
||||||
|
@ -138,6 +138,6 @@ jobs:
|
||||||
- name: Upload Artifact 🚀
|
- name: Upload Artifact 🚀
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${EXPORT_NAME}-Mac
|
name: ${{env.EXPORT_NAME}}-Mac
|
||||||
path: ./build/mac/${EXPORT_NAME}.dmg
|
path: ./build/mac/${{env.EXPORT_NAME}}.dmg
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
|
|
Loading…
Reference in a new issue