diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0290a4..90c0603 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: push: jobs: - publish-linux-x86: + publish-linux: runs-on: ubuntu-latest steps: @@ -15,6 +15,8 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable + with: + targets: "aarch64-linux-gnu-gcc, x86_64-unknown-linux-musl" - name: Build amd64 run: cargo build --release diff --git a/Cargo.toml b/Cargo.toml index 21c2810..e929013 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,9 +20,3 @@ webbrowser = "0.8.13" [profile.release] strip = "debuginfo" - -[target.x86_64-unknown-linux-musl] -linker = "x86_64-linux-musl-gcc" - -[target.aarch64-unknown-linux-musl] -linker = "aarch64-linux-musl-gcc"