From acdf923ce04a1b848863698e00db1e826ad9ee51a481307fcb08dc619d3ffb48 Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 30 Jun 2026 04:34:24 +0200 Subject: [PATCH] fixing release_build action. --- .gitea/workflows/build_release.yaml | 32 +++++++++++------------------ 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/build_release.yaml b/.gitea/workflows/build_release.yaml index 2264773..533692a 100644 --- a/.gitea/workflows/build_release.yaml +++ b/.gitea/workflows/build_release.yaml @@ -18,18 +18,17 @@ jobs: # If triggered manually, use the input tag. # If triggered by push, GITHUB_REF_NAME is the tag. ref: ${{ inputs.tag_name || gitea.ref_name }} - fetch-depth: 0 # Fetch all history for all tags - - - name: Verify Version - run: | - TAG=${{ inputs.tag_name || gitea.ref_name }} - CARGO_VERSION=$(grep '^version = ' Cargo.toml | head -1 | cut -d'"' -f2) - echo "Building tag: $TAG" - echo "Cargo.toml version: $CARGO_VERSION" - # Optional: Fail if tag doesn't match Cargo.toml - if [ "v$CARGO_VERSION" != "$TAG" ]; then - echo "::warning::Tag ($TAG) does not match Cargo.toml version (v$CARGO_VERSION)" - fi + + # - name: Verify Version + # run: | + # TAG=${{ inputs.tag_name || gitea.ref_name }} + # CARGO_VERSION=$(grep '^version = ' Cargo.toml | head -1 | cut -d'"' -f2) + # echo "Building tag: $TAG" + # echo "Cargo.toml version: $CARGO_VERSION" + # # Optional: Fail if tag doesn't match Cargo.toml + # if [ "v$CARGO_VERSION" != "$TAG" ]; then + # 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 @@ -41,11 +40,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: nyanit-${{ inputs.tag_name || gitea.ref_name }} - path: target/release/ - - - name: Upload Release Artifact - uses: actions/upload-artifact@v4 - with: - name: rust-app-${{ inputs.version }} - path: target/release/ - retention-days: 30 \ No newline at end of file + path: target/release/nyanit