Skip to content

Commit

Permalink
Change tar.gz file name
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarat Nathwani committed Nov 18, 2019
1 parent 9a0bfb8 commit 2ac1be0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2ac1be0

Please sign in to comment.