From d176766db276e4ed7f2432b1f3a37c7f64ce8cc2 Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Mon, 6 Apr 2026 11:17:15 +0300 Subject: [PATCH] Uploading Binary as artifact in Github Actions --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b6e455..d664174 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,4 +36,10 @@ jobs: ${{ runner.os }}-cargo- - name: Build Release - run: cargo build --release --verbose \ No newline at end of file + run: cargo build --release --verbose + + - name: Upload binary artifact + uses: actions/upload-artifact@v4 + with: + name: telemt + path: target/release/telemt \ No newline at end of file