ci: moving to Itch publication
Some checks failed
Create tag and build when new code gets to main / BumpTag (push) Successful in 6s
Create tag and build when new code gets to main / Export (push) Has been cancelled

This commit is contained in:
2025-06-17 16:23:32 +02:00
parent c10b9c413a
commit 12f8379095

View File

@ -9,6 +9,9 @@ on:
env:
GAME_NAME: GodotExampleProject
ITCHIO_USERNAME: Minimata
ITCHIO_GAMEID: CICDTestProject
jobs:
BumpTag:
@ -68,8 +71,6 @@ jobs:
zip -r Mac.zip build/mac
- name: Upload to release
uses: akkuman/gitea-release-action@v1
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:
name: Running release
tag_name: ${{ needs.BumpTag.outputs.tag_name }}
@ -77,3 +78,30 @@ jobs:
Windows.zip
Linux.zip
Mac.zip
- name: Upload to Itch
uses: KikimoraGames/itch-publish@v0.0.3
with:
butlerApiKey: ${{ secrets.BUTLER_TOKEN }}
itchUsername: ${{ env.ITCHIO_USERNAME }}
itchGameId: ${{ env.ITCHIO_GAMEID }}
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
gameData: Windows.zip
buildChannel: windows
- name: Upload to Itch
uses: KikimoraGames/itch-publish@v0.0.3
with:
butlerApiKey: ${{ secrets.BUTLER_TOKEN }}
itchUsername: ${{ env.ITCHIO_USERNAME }}
itchGameId: ${{ env.ITCHIO_GAMEID }}
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
gameData: Linux.zip
buildChannel: linux
- name: Upload to Itch
uses: KikimoraGames/itch-publish@v0.0.3
with:
butlerApiKey: ${{ secrets.BUTLER_TOKEN }}
itchUsername: ${{ env.ITCHIO_USERNAME }}
itchGameId: ${{ env.ITCHIO_GAMEID }}
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
gameData: Mac.zip
buildChannel: mac