Skip to content

Commit

Permalink
Merge branch 'main' into named-topic
Browse files Browse the repository at this point in the history
  • Loading branch information
Devdutt Shenoi authored Feb 7, 2024
2 parents 481d268 + f601a9b commit 5069917
Show file tree
Hide file tree
Showing 32 changed files with 3,418 additions and 1,087 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@ on:
types: [published]

jobs:
release-tools:
name: Build tools/${{ matrix.build }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build: [system-stats]
steps:
- uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: x86_64-unknown-linux-musl

- name: Build binary
working-directory: tools/${{ matrix.build }}
run: cargo build --verbose --release --target x86_64-unknown-linux-musl

- name: Upload release archive
uses: softprops/action-gh-release@v1
with:
files: tools/${{ matrix.build }}/target/x86_64-unknown-linux-musl/release/${{ matrix.build }}

build-release:
name: Build release for ${{ matrix.target }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -105,6 +132,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: uplink*

build-release-android:
name: Build release for android
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 5069917

Please sign in to comment.