Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upload artifacts in batches #30

Merged
merged 9 commits into from
Sep 17, 2024
Prev Previous commit
Next Next commit
Split the upload into batches (#7)
* split the upload into two batches to see if that helps

* Add Orange Pi 5 Max (#29)

---------

Co-authored-by: Plugner <48152341+Plugner@users.noreply.github.com>
crschardt and Plugner authored Sep 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5ed73c75309524b036da6cbc61ef5852a60ae865
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -97,7 +97,14 @@ jobs:
- uses: softprops/action-gh-release@v2.0.8
with:
files: |
**/*.xz
**/*opi5*.xz
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: softprops/action-gh-release@v2.0.8
with:
files: |
!**/*opi5*.xz
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}