From f15fa368ac5a0b93af433d2cab7addfec2d3b7810505d01b6f6f55cb3ddc35ec Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 30 Jun 2026 19:03:09 +0200 Subject: [PATCH] Finished plaing with actions. Build Release action should be functional now. --- .gitea/workflows/build_release.yaml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.gitea/workflows/build_release.yaml b/.gitea/workflows/build_release.yaml index ee3a11a..146570b 100644 --- a/.gitea/workflows/build_release.yaml +++ b/.gitea/workflows/build_release.yaml @@ -33,23 +33,11 @@ jobs: # echo "::warning::Tag ($TAG) does not match Cargo.toml version (v$CARGO_VERSION)" # fi - # - name: Setup Rust toolchain - # uses: actions-rust-lang/setup-rust-toolchain@v1 + - name: Setup Rust toolchain + uses: actions-rust-lang/setup-rust-toolchain@v1 - # - name: Build Release Binary - # run: cargo build --release - - - name: Build with Rust Docker Image - run: | - echo "Checking host path: ${{ github.workspace }}" - ls -la "${{ github.workspace }}" - - docker run --rm \ - -v "${{ github.workspace }}:/app:z" \ - -w /app \ - rust:slim-trixie \ - cargo build --release - + - name: Build Release Binary + run: cargo build --release - name: Upload Artifact uses: actions/upload-artifact@v3