Skip to content

Commit

Permalink
try aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
g committed Sep 13, 2024
1 parent b0bba99 commit d31da28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit d31da28

Please sign in to comment.