Skip to content

Commit

Permalink
Add itch publication to publish workflow
Browse files Browse the repository at this point in the history
Fixes #46 > **We now publish to [itch.io](https://eficode.itch.io/neomori)**
  • Loading branch information
SkoggsTrollet committed Aug 4, 2021
1 parent 9c7eb4e commit 903aba8
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,20 @@ jobs:
- name: Zip client
run: zip -q -r ${{ env.FILENAME }}.zip NeoMori

- name: Publish clients
- name: Publish to github release
uses: softprops/action-gh-release@v1
with:
files: ${{ env.FILENAME }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to itch.io
uses: josephbmanley/[email protected]
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
CHANNEL: ${{ matrix.platform }}
ITCH_GAME: neomori
ITCH_USER: eficode
PACKAGE: ${{ env.FILENAME }}.zip
VERSION: ${GITHUB_REF/refs\/tags\//}\

0 comments on commit 903aba8

Please sign in to comment.