Skip to content

Commit

Permalink
fix(build): hopefully this time it will actually upload to itch
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Mar 27, 2023
1 parent 15dcef9 commit e5a8f49
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ jobs:
asset_name: WorldSeller.exe
asset_content_type: application/vnd.microsoft.portable-executable

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: WorldSeller.exe
path: ./electron/out/make/squirrel.windows/x64/WorldSeller.exe

publish-linux:
needs: [build]
name: Create Linux Binary
Expand Down Expand Up @@ -179,6 +185,12 @@ jobs:
asset_name: WorldSeller-linux.zip
asset_content_type: application/zip

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: WorldSeller-linux.zip
path: ./electron/out/make/zip/linux/x64/WorldSeller.zip

upload-itch:
needs: [publish-windows, publish-linux]
name: Upload to Itch.io
Expand Down

0 comments on commit e5a8f49

Please sign in to comment.