From 523298b36601f5481c454394877b445f93d74035 Mon Sep 17 00:00:00 2001 From: fscarmen <62703343+fscarmen@users.noreply.github.com> Date: Sat, 23 Apr 2022 01:18:22 +0800 Subject: [PATCH] Update boringtun.yml --- .github/workflows/boringtun.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/boringtun.yml b/.github/workflows/boringtun.yml index 8cc29bd..4b160bd 100644 --- a/.github/workflows/boringtun.yml +++ b/.github/workflows/boringtun.yml @@ -25,12 +25,16 @@ jobs: with: use-cross: true command: build - args: --release --bin boringtun-cli_${{ matrix.target }} --all-features + args: --release --bin boringtun-cli --all-features + + - name: Archives boringtun-cli + run: | + tar czvf boringtun-cli_${{ matrix.target }}.tar.gz ./target/release/boringtun-cli - name: Release binaries uses: softprops/action-gh-release@v1 with: tag_name: BoringTun - files: ./target/release/boringtun-cli_${{ matrix.target }} + files: ./boringtun-cli_${{ matrix.target }}.tar.gz env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}