-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload built binaries as artifacts so PRs can be tested more easily
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 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 |
---|---|---|
|
@@ -41,6 +41,15 @@ jobs: | |
make EXTRA_CFLAGS="-I/sysroot/mipsel/include -L/sysroot/mipsel/lib" EMBEDDED=1 | ||
zip -9 -r /minisatip_mips.zip minisatip html | ||
- name: Archive built binaries | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: minisatip | ||
path: | | ||
/minisatip_x64.zip | ||
/minisatip_arm.zip | ||
/minisatip_axe.zip | ||
/minisatip_mips.zip | ||
- name: Bump version and push tag/create release point | ||
uses: anothrNick/[email protected] | ||
|