Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
0a76e96f1d | |||
12f8379095 | |||
c10b9c413a |
@ -9,6 +9,9 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
GAME_NAME: GodotExampleProject
|
GAME_NAME: GodotExampleProject
|
||||||
|
ITCHIO_USERNAME: Minimata
|
||||||
|
ITCHIO_GAMEID: CICDTestProject
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
BumpTag:
|
BumpTag:
|
||||||
@ -66,12 +69,30 @@ jobs:
|
|||||||
mkdir -v -p build/mac
|
mkdir -v -p build/mac
|
||||||
godot --headless --verbose --export-release "macOS" build/mac/${{ env.GAME_NAME }}.zip
|
godot --headless --verbose --export-release "macOS" build/mac/${{ env.GAME_NAME }}.zip
|
||||||
zip -r Mac.zip build/mac
|
zip -r Mac.zip build/mac
|
||||||
- name: Upload to release
|
- name: Upload to Itch
|
||||||
uses: akkuman/gitea-release-action@v1
|
uses: KikimoraGames/itch-publish@v0.0.3
|
||||||
with:
|
with:
|
||||||
name: Running release
|
butlerApiKey: ${{ secrets.BUTLER_TOKEN }}
|
||||||
tag_name: ${{ needs.BumpTag.outputs.tag_name }}
|
itchUsername: ${{ env.ITCHIO_USERNAME }}
|
||||||
files: |-
|
itchGameId: ${{ env.ITCHIO_GAMEID }}
|
||||||
Windows.zip
|
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
|
||||||
Linux.zip
|
gameData: Windows.zip
|
||||||
Mac.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
|
||||||
|
Reference in New Issue
Block a user