From 2ac1be02475435bc9edcf5b33e0cc252099fa9df Mon Sep 17 00:00:00 2001 From: Aarat Nathwani Date: Mon, 18 Nov 2019 12:57:21 +0530 Subject: [PATCH] Change tar.gz file name --- .github/workflows/main.yml | 10 +++++----- Makefile | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 420d94a..bd5a189 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: make build - name: Package App run: | - PLATFORM=osx make package + PLATFORM=osx_x64 make package - name: Download Upload URL uses: actions/download-artifact@v1 with: @@ -70,8 +70,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.extract_upload_url.outputs.upload_url }} - asset_path: terraenv_osx.tar.gz - asset_name: terraenv_osx.tar.gz + asset_path: terraenv_osx_x64.tar.gz + asset_name: terraenv_osx_x64.tar.gz asset_content_type: application/octet-stream build_release_linux: @@ -114,6 +114,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.extract_upload_url.outputs.upload_url }} - asset_path: terraenv_linux.tar.gz - asset_name: terraenv_linux.tar.gz + asset_path: terraenv_linux_x64.tar.gz + asset_name: terraenv_linux_x64.tar.gz asset_content_type: application/octet-stream diff --git a/Makefile b/Makefile index 074e7f4..ceb1bd3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -PLATFORM?=linux +PLATFORM?=linux_x64 build: @PYTHONOPTIMIZE=1 pyinstaller terraenv.py --onefile --clean --osx-bundle-identifier com.aarat.os.terraenv --nowindowed