From eca96ae67fed96a8a71e248525eb9a470983b475 Mon Sep 17 00:00:00 2001 From: Eric Veilleux Date: Tue, 6 Jun 2023 00:26:19 -0400 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24683cf..82494ae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,10 @@ jobs: target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl] steps: - uses: actions/checkout@master - - run: sudo apt update && sudo apt install g++ pkg-config libx11-dev libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev libwayland-client0 + - run: | + sudo apt update + sudo apt install g++ pkg-config libx11-dev libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev libwayland-client0 + sudo cp /usr/lib/x86_64-linux-gnu/pkgconfig/wayland-client.pc /usr/lib/pkgconfig - name: Update Rust to last stable run: rustup update stable - name: Compile and release @@ -24,4 +27,4 @@ jobs: with: RUSTTARGET: ${{ matrix.target }} EXTRA_FILES: "README.md LICENSE" - MINIFY: "yes" + MINIFY: "true"