-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
g
committed
Sep 13, 2024
1 parent
b0bba99
commit d31da28
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -43,21 +43,21 @@ jobs: | |
|
||
|
||
embedded: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install cross | ||
run: cargo install cross | ||
|
||
- name: Build for armv7-gnueabihf | ||
run: cross build --target armv7-unknown-linux-gnueabihf --release | ||
- name: Build for aarch64-unknown-linux-gnu | ||
run: cross build --target aarch64-unknown-linux-gnu --release | ||
|
||
- name: Upload binaries to release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: target/armv7-unknown-linux-gnueabihf/release/obs-cmd | ||
asset_name: obs-cmd-armv7 | ||
file: target/aarch64-unknown-linux-gnu/release/obs-cmd | ||
asset_name: obs-cmd-aarch64-linux | ||
tag: ${{ github.ref }} |