Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix x86_64-unknown-linux-musl
Browse files Browse the repository at this point in the history
ri-char committed Feb 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 453dddf commit 3a5d50d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -23,12 +23,12 @@ jobs:
version: 1.0

- name: Build x86_64
run: cargo build --release
run: cargo build --target x86_64-unknown-linux-musl --release

- name: Upload x86_64 Building
uses: actions/upload-artifact@v4
with:
name: estrace-x86_64-unknown-linux-musl
name: pwatch-x86_64-unknown-linux-musl
path: target/x86_64-unknown-linux-musl/release/pwatch

- name: Build AArch64
@@ -37,5 +37,5 @@ jobs:
- name: Upload AArch64 Building
uses: actions/upload-artifact@v4
with:
name: estrace-aarch64-unknown-linux-musl
name: pwatch-aarch64-unknown-linux-musl
path: target/aarch64-unknown-linux-musl/release/pwatch

0 comments on commit 3a5d50d

Please sign in to comment.