From 768c0e6dcee081929a0e04882444a2d8fa6f6499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Wo=C5=BAniak?= Date: Fri, 30 Jul 2021 10:21:31 +0200 Subject: [PATCH] Add sudo --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2e5ee3f..9276741 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,7 +24,7 @@ jobs: - name: Run tests run: cargo test --verbose - name: Install binary compressor - run: apt-get update && apt-get install upx-ucl + run: sudo apt-get update && sudo apt-get install upx-ucl - name: Build run: cargo build --release --verbose --target=x86_64-unknown-linux-musl && strip ./target/x86_64-unknown-linux-musl/release/amdfand && upx --best --lzma target/x86_64-unknown-linux-musl/release/amdfand - name: Upload a Build Artifact