[CI] Fix release artifact uploading (#2353)

also don't run tree anymore
This commit is contained in:
pajlada 2021-01-10 13:39:56 +01:00 committed by GitHub
parent 1a08282cae
commit 44dd74488c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -216,11 +216,6 @@ jobs:
# TODO: Extract dmg and appimage # TODO: Extract dmg and appimage
- name: TREE
run: |
sudo apt update && sudo apt install tree
tree .
# - name: Read upload URL into output # - name: Read upload URL into output
# id: upload_url # id: upload_url
# run: | # run: |
@ -232,7 +227,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
upload_url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./windows/chatterino-windows-x86-64-default.zip asset_path: ./windows/chatterino-windows-x86-64.zip
asset_name: chatterino-windows-x86-64.zip asset_name: chatterino-windows-x86-64.zip
asset_content_type: application/zip asset_content_type: application/zip
@ -242,7 +237,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
upload_url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./linux/Chatterino-x86_64-default.AppImage asset_path: ./linux/Chatterino-x86_64.AppImage
asset_name: Chatterino-x86_64.AppImage asset_name: Chatterino-x86_64.AppImage
asset_content_type: application/x-executable asset_content_type: application/x-executable
@ -252,6 +247,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
upload_url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./macos/chatterino-osx-default.dmg asset_path: ./macos/chatterino-osx.dmg
asset_name: chatterino-osx.dmg asset_name: chatterino-osx.dmg
asset_content_type: application/x-bzip2 asset_content_type: application/x-bzip2