From 38d6be83dc7ca072a0a0761bd4db07a5d70c035a Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Thu, 20 Mar 2025 22:13:51 -0400 Subject: [PATCH] Update .gitea/workflows/release.yml --- .gitea/workflows/release.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index f1615e8..d9af9ea 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -25,16 +25,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install deps - run: apt-get update; apt-get install -y libdbus-1-3 libdbus-1-dev libdbus-1-3 pkg-config - - name: Build binary - uses: houseabsolute/actions-rust-cross@v1 - with: - use-rust-cache: false - command: "build" - target: ${{ matrix.platform.target }} - toolchain: ${{ matrix.platform.toolchain }} - - name: Publish artifacts and release - uses: houseabsolute/actions-rust-release@v0 - with: - executable-name: "mycelium" - target: "x86_64-unknown-linux-gnu" \ No newline at end of file + run: | + apt-get update; apt-get install -y libdbus-1-3 libdbus-1-dev libdbus-1-3 pkg-config rustup + rustup toolchain install stable-x86_64-unknown-linux-gnu + cargo build --release \ No newline at end of file