From d67f3c42f8b969c50070d15725070ee86cf3cf03 Mon Sep 17 00:00:00 2001 From: Jimii <30603522+jim4067@users.noreply.github.com> Date: Fri, 21 Oct 2022 15:52:46 +0300 Subject: [PATCH] [#107] Remove dynamically-linked 'tool-sync' asset (#144) Resolves #107 ### Additional tasks - [ ] Documentation for changes provided/changed - [ ] Tests added - [ ] Updated CHANGELOG.md Co-authored-by: Dmitrii Kovanikov --- .github/workflows/release.yml | 4 ---- src/sync/db.rs | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a4fc540..f4df09e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,10 +23,6 @@ jobs: strategy: matrix: include: - # This legacy target is only for backwards compatibility - # TODO: remove for the v0.3.0 release - - target: x86_64-unknown-linux-gnu - os: ubuntu-latest - target: x86_64-unknown-linux-musl os: ubuntu-latest - target: x86_64-apple-darwin diff --git a/src/sync/db.rs b/src/sync/db.rs index fdbb109..d5b43a2 100644 --- a/src/sync/db.rs +++ b/src/sync/db.rs @@ -128,7 +128,7 @@ pub fn build_db() -> BTreeMap { owner: "chshersh", repo: "tool-sync", exe_name: "tool", - linux: "x86_64-unknown-linux-gnu.tar.gz", + linux: "x86_64-unknown-linux-musl.tar.gz", macos: "x86_64-apple-darwin.tar.gz", windows: "x86_64-pc-windows-msvc.zip", tag: ToolInfoTag::Latest,