From 11a75bfef9db6b95396016c6401076ade6ccbf70 Mon Sep 17 00:00:00 2001 From: spv Date: Fri, 26 Jul 2024 13:47:42 +0200 Subject: [PATCH] bruh Signed-off-by: spv --- .gitea/workflows/build.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index fd1cf63..644f39d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -12,9 +12,11 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - name: Install Rust - run: apt update && apt install cargo -y - - name: Build + run: apt update && apt install cargo -y && rustup target add x86_64-pc-windows-gnu + - name: Build linux run: cargo build --release + - name: Build Windows + run: cargo build --release --target x86_64-pc-windows-gnu - name: Hash Release id: get-hash run: | @@ -26,6 +28,8 @@ jobs: with: sha256sum: true body_path: ./CHANGES.md - name: '${{steps.get-hash.outputs.TAG_NAME}}' + tag_name: '${{steps.get-hash.outputs.TAG_NAME}}' + name: v'${{steps.get-hash.outputs.TAG_NAME}}'' files: |- ./target/release/rsa + ./target/x86_64-pc-windows-gnu/release/rsa.exe