Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Dec 23, 2022
1 parent d241676 commit a1f472f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a1f472f

Please sign in to comment.