From a1f472f9f9b878fa1605bf7a687a075799b6331b Mon Sep 17 00:00:00 2001 From: CamDavidsonPilon Date: Thu, 22 Dec 2022 20:09:38 -0500 Subject: [PATCH] try this --- .github/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index a31c4f1..8811012 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -70,14 +70,14 @@ jobs: uses: actions/upload-artifact@v3 with: name: elf_file - path: build/main.elf + path: ${{runner.workspace}}/build/main.elf - name: Upload elf to GH release page uses: svenstaro/upload-release-action@v2 if: github.event_name == 'release' && github.repository == 'Pioreactor/pico-build' with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: build/main.elf + file: ${{runner.workspace}}/build/main.elf tag: ${{ github.ref }} overwrite: true file_glob: true \ No newline at end of file