From afb7139c892120e7e67b481340f852854f286bb4 Mon Sep 17 00:00:00 2001 From: muraca Date: Tue, 3 Oct 2023 23:27:26 +0200 Subject: [PATCH] use binary from release instead of building Signed-off-by: muraca --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fb5118a..4560833 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,7 @@ runs: steps: - name: "Installing TOML Sort" shell: "bash" - run: cargo install --git https://github.com/Off-Narrative-Labs/toml_sort + run: curl https://github.com/Off-Narrative-Labs/toml_sort/releases/download/v0.1.0/toml-sort-x86_64-unknown-linux-gnu.tar.gz -L | tar -xz - if: ${{ inputs.all }} name: "Running TOML Sort check on all TOML files starting from current directory" shell: "bash"