Macos
This commit is contained in:
parent
99dadbb807
commit
a225ddd5b4
|
@ -71,6 +71,12 @@ jobs:
|
||||||
name: "${{ github.event.repository.name }}-win64.zip"
|
name: "${{ github.event.repository.name }}-win64.zip"
|
||||||
path: "${{ github.workspace }}/bin/*-win64.zip"
|
path: "${{ github.workspace }}/bin/*-win64.zip"
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
- name: Uploading artifacts (macos)
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: "${{ github.event.repository.name }}-macos.zip"
|
||||||
|
path: "${{ github.workspace }}/bin/*-macos.zip"
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
# Determine files
|
# Determine files
|
||||||
|
|
||||||
|
@ -79,6 +85,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo "love="$(ls bin/*.love) >> "$GITHUB_OUTPUT"
|
echo "love="$(ls bin/*.love) >> "$GITHUB_OUTPUT"
|
||||||
echo "win64="$(ls bin/*-win64.zip) >> "$GITHUB_OUTPUT"
|
echo "win64="$(ls bin/*-win64.zip) >> "$GITHUB_OUTPUT"
|
||||||
|
echo "macos="$(ls bin/*-win64.zip) >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
# Upload to itch
|
# Upload to itch
|
||||||
|
|
||||||
|
@ -89,7 +96,7 @@ jobs:
|
||||||
gameData: ${{ steps.findfiles.outputs.love }}
|
gameData: ${{ steps.findfiles.outputs.love }}
|
||||||
itchUsername: ${{ inputs.ITCH_USERNAME }}
|
itchUsername: ${{ inputs.ITCH_USERNAME }}
|
||||||
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
||||||
buildChannel: love-linux-mac
|
buildChannel: love-linux
|
||||||
|
|
||||||
- uses: KikimoraGames/itch-publish@v0.0.3
|
- uses: KikimoraGames/itch-publish@v0.0.3
|
||||||
if: always() && github.event_name == 'release' && inputs.ITCH_GAME_ID
|
if: always() && github.event_name == 'release' && inputs.ITCH_GAME_ID
|
||||||
|
@ -100,6 +107,15 @@ jobs:
|
||||||
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
||||||
buildChannel: win64
|
buildChannel: win64
|
||||||
|
|
||||||
|
- uses: KikimoraGames/itch-publish@v0.0.3
|
||||||
|
if: always() && github.event_name == 'release' && inputs.ITCH_GAME_ID
|
||||||
|
with:
|
||||||
|
butlerApiKey: ${{ secrets.BUTLER_API_KEY }}
|
||||||
|
gameData: ${{ steps.findfiles.outputs.macos }}
|
||||||
|
itchUsername: ${{ inputs.ITCH_USERNAME }}
|
||||||
|
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
||||||
|
buildChannel: mac
|
||||||
|
|
||||||
# Upload to steam
|
# Upload to steam
|
||||||
|
|
||||||
- uses: game-ci/steam-deploy@v3
|
- uses: game-ci/steam-deploy@v3
|
||||||
|
|
Loading…
Reference in New Issue
Block a user