Fix desktop ci artifacts path (#896)

The `working-directory` option does not apply to the artifacts steps, so
we have to specify the full paths
This commit is contained in:
Kevin Schaul
2024-04-12 16:02:53 -05:00
committed by GitHub
parent f34529ef06
commit 95b5324fd3

View File

@@ -37,16 +37,16 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: maputnik-linux
path: bin/linux/
path: ./desktop/bin/linux/
- name: Artifacts/darwin
uses: actions/upload-artifact@v3
with:
name: maputnik-darwin
path: bin/darwin/
path: ./desktop/bin/darwin/
- name: Artifacts/windows
uses: actions/upload-artifact@v3
with:
name: maputnik-windows
path: bin/windows/
path: ./desktop/bin/windows/