From 95ba4f1c2cc4c6e31822df9b6d43539f0f292d4b Mon Sep 17 00:00:00 2001 From: Kevin Schaul Date: Fri, 12 Apr 2024 15:33:07 -0500 Subject: [PATCH] Fix desktop ci artifacts path The `working-directory` option does not apply to the artifacts steps, so we have to specify the full paths --- .github/workflows/ci-desktop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-desktop.yml b/.github/workflows/ci-desktop.yml index 332d83f9..eb25689b 100644 --- a/.github/workflows/ci-desktop.yml +++ b/.github/workflows/ci-desktop.yml @@ -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/