From 85f7011fc3596747bf556efb57e122b48769633a Mon Sep 17 00:00:00 2001 From: Mic Neale Date: Wed, 18 Dec 2024 19:29:54 +1100 Subject: [PATCH] trying this --- .github/workflows/cli-release.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cli-release.yml b/.github/workflows/cli-release.yml index deaaabe171..01bc820be5 100644 --- a/.github/workflows/cli-release.yml +++ b/.github/workflows/cli-release.yml @@ -36,7 +36,7 @@ jobs: sudo apt install -y libdbus-1-dev libssl-dev gnome-keyring libxcb1-dev gnome-keyring-daemon --components=secrets --daemonize --unlock <<< 'foobar' - # Build the project with conditional openssl/vendored + # Build the project - id: build name: Build the project shell: bash @@ -44,13 +44,8 @@ jobs: export CROSS_NO_WARNINGS=0 export TARGET=${{ matrix.arch }}-${{ matrix.target-suffix }} rustup target add "${TARGET}" - - if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then - # Enable vendored OpenSSL for Linux - cross build --release --target ${TARGET} --no-default-features --features openssl/vendored - else - cross build --release --target ${TARGET} - fi + + cross build --release --target ${TARGET} export TARGET_PATH=target/${TARGET}/release/goose-${TARGET} mv target/${TARGET}/release/goose ${TARGET_PATH}