-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changes: Quality definitions to standard jpeg quality * Added image converters * Added a lot of supported boards * Many bug-fixes * More examples * Additional improvements
- Loading branch information
Showing
14 changed files
with
1,397 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Add-Artifacts-to-Draft-Release | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
|
||
jobs: | ||
add_artifacts: | ||
if: ${{ github.event.release.draft }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up GitHub CLI | ||
uses: actions/setup-gh-cli@v2 | ||
|
||
- name: Authenticate GitHub CLI | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: firmware-* | ||
path: ./artifacts | ||
|
||
- name: Upload Release Assets | ||
run: | | ||
for file in ./artifacts/*; do | ||
gh release upload "${{ github.event.release.tag_name }}" "$file" --clobber | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.