From ae049e44664b33723ce51771b40b9e97dad14567 Mon Sep 17 00:00:00 2001 From: random-geek <35757396+random-geek@users.noreply.github.com> Date: Sat, 22 May 2021 16:27:08 -0700 Subject: [PATCH] Github Actions 3 --- .github/workflows/publish.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 792abfa..64b4877 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,15 +19,13 @@ jobs: toolchain: stable - name: Build - run: cargo build --release --locked + run: | + cargo build --release --locked + tar.exe -c -a -f mapeditr-windows.zip target/release/mapeditr.exe LICENSE.txt README.md Manual.md - name: Upload artifacts to release uses: softprops/action-gh-release@v1 with: - files: | - LICENSE.txt - README.md - Manual.md - target/release/mapeditr.exe + files: mapeditr-windows.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}