From 6544e3ecb76288f2e19aecad93124b4d04881170 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Mon, 16 Jun 2025 22:36:47 +0200 Subject: [PATCH] chore: really build binary --- .forgejo/workflows/release.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index eebe592..4dcd587 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -3,9 +3,10 @@ jobs: release: runs-on: docker steps: - - run: mkdir -p mypath - - run: echo "hello" > mypath/world.txt + - uses: actions/checkout@v4 + - uses: https://git.aquila-consortium.org/guilhem_lavaux/setup-rust-toolchain-forge@v1.12.0-forge + - run: cargo build --release - uses: actions/upload-artifact@v3 with: - name: my-artifact - path: mypath/world.txt + name: binary + path: target/release/forgejo_automate