Skip to content

Commit

Permalink
try wd
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Dec 23, 2022
1 parent 900f2fe commit d241676
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,18 @@ jobs:
run: |
cmake --build . --config $BUILD_TYPE -j 2
- name: Upload build result
- name: Upload build result
uses: actions/upload-artifact@v3
with:
name: elf_file
path: main.elf
path: build/main.elf

- name: Upload elf to GH release page
- 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: main.elf
file: build/main.elf
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit d241676

Please sign in to comment.