mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
[CI] Fix release artifact uploading (#2353)
also don't run tree anymore
This commit is contained in:
parent
1a08282cae
commit
44dd74488c
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue