From 400f0d4e4b0ab9c542c7b4648824010d96a3a2cc Mon Sep 17 00:00:00 2001 From: Maxence Perrin <47532622+MaxencePerrinPrestashop@users.noreply.github.com> Date: Wed, 25 Sep 2024 16:48:24 +0200 Subject: [PATCH] devops: fix upload artifact workflow --- .github/workflows/build-release-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-release-publish.yml b/.github/workflows/build-release-publish.yml index 05544c629..07e8846ab 100644 --- a/.github/workflows/build-release-publish.yml +++ b/.github/workflows/build-release-publish.yml @@ -72,7 +72,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ github.event.repository.name }} - path: ../ + path: ${{ github.workspace }} upload_release_asset_production: name: Upload the production zip asset to the release @@ -91,6 +91,7 @@ jobs: uses: actions/download-artifact@v1 with: name: ${{ github.event.repository.name }} + path: ${{ github.workspace }} - name: Set up Cloud SDK uses: google-github-actions/setup-gcloud@v0