From dc84c8cd08bb1ec61b4c641e2e7b449ef4c07db3 Mon Sep 17 00:00:00 2001 From: Donkie Date: Fri, 29 Dec 2023 12:42:05 +0100 Subject: [PATCH] Moved to tmp dir instead --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 391cd82..45e316e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -357,12 +357,11 @@ jobs: uses: actions/download-artifact@v3 with: name: spoolman - path: /spoolman + path: /tmp/spoolman - name: Generate release info run: | - cd /spoolman - ls -R + cd /tmp/spoolman echo '{ "project_name": "Spoolman", "project_owner": "Donkie", @@ -371,7 +370,7 @@ jobs: - name: Zip run: | - cd /spoolman + cd /tmp/spoolman zip -r spoolman.zip * - name: Create release and upload build @@ -381,7 +380,7 @@ jobs: draft: true name: ${{ github.ref_name }} tag_name: ${{ github.ref_name }} - files: /spoolman/spoolman.zip + files: /tmp/spoolman/spoolman.zip token: ${{ secrets.GITHUB_TOKEN }} body: "⚠️ TODO ⚠️"