Skip to content

Commit

Permalink
Create uf2 upload release asset in cmake action
Browse files Browse the repository at this point in the history
  • Loading branch information
beshrkayali committed Feb 19, 2021
1 parent dae7e5f commit 117cd8b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,26 @@ jobs:
shell: bash
run: |
cmake --build . --config $BUILD_TYPE -j 2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ${{runner.workspace}}/example/build/stepper_example.uf2
asset_name: stepper_example.uf2
asset_content_type: application/octet-stream

0 comments on commit 117cd8b

Please sign in to comment.