From d207e3d182297778172bf0d87f1a4ecc8cf32e70 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Fri, 17 Feb 2023 12:11:19 +0300 Subject: [PATCH] add suffix to tar.gz --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c0f575..3b3430a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -89,7 +89,7 @@ jobs: cwd: /tmp files: | xmrig-nightly - outPath: xmrig-nightly.tar.gz + outPath: xmrig-nightly-linux-static-x64.tar.gz - name: Release (Nightly) uses: softprops/action-gh-release@v1 @@ -97,7 +97,7 @@ jobs: prerelease: true tag_name: "nightly" files: | - ./xmrig-nightly.tar.gz + ./xmrig-nightly-linux-static-x64.tar.gz release: runs-on: ubuntu-latest @@ -128,7 +128,7 @@ jobs: cwd: /tmp files: | xmrig-${{env.VER}} - outPath: xmrig-${{env.VER}}.tar.gz + outPath: xmrig-${{env.VER}}-linux-static-x64.tar.gz - name: Release uses: softprops/action-gh-release@v1 @@ -136,4 +136,4 @@ jobs: tag_name: ${{env.VERSION}} body: "Changelog: https://github.com/xmrig/xmrig/releases/tag/${{env.VERSION}}" files: | - ./xmrig-${{env.VER}}.tar.gz \ No newline at end of file + ./xmrig-${{env.VER}}-linux-static-x64.tar.gz \ No newline at end of file