Files
nyanit/.gitea/workflows/build_release.yaml
T

51 lines
1.6 KiB
YAML

name: Build Release
on:
workflow_dispatch: # Enables manual triggering
inputs:
tag_name:
description: 'Git tag to build (e.g., v1.0.0)'
required: true
type: string
jobs:
build-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# 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: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build Release Binary
run: cargo build --release
- name: Upload Artifact
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