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