Compare commits
No commits in common. "c7008fd0314eb8fbb04c54fd2ac69bfb7e69ab82" and "1ce5663d8c1036ef5ca73d01df046223d8a28294" have entirely different histories.
c7008fd031
...
1ce5663d8c
|
@ -55,27 +55,27 @@ jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [package]
|
needs: [package]
|
||||||
|
if: inputs.PUBLISH
|
||||||
|
|
||||||
name: Deploy - Itch.io
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
|
matrix:
|
||||||
|
channel: # TODO
|
||||||
|
- love
|
||||||
|
#- win64 # TODO
|
||||||
|
|
||||||
|
name: Deploy - Itch.io ${{ matrix.template }}
|
||||||
steps:
|
steps:
|
||||||
- run: mkdir build -p
|
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: kjam-2023.love
|
path: build/${{ matrix.channel }}
|
||||||
path: ./build/kjam-2023.love
|
|
||||||
- name: Look around
|
- name: Look around
|
||||||
run: ls -lR build
|
run: ls -lR build
|
||||||
- uses: KikimoraGames/itch-publish@v0.0.3
|
- uses: KikimoraGames/itch-publish@v0.0.3
|
||||||
with:
|
with:
|
||||||
butlerApiKey: ${{ secrets.BUTLER_API_KEY }}
|
butlerApiKey: ${{ secrets.BUTLER_API_KEY }}
|
||||||
gameData: ./build/kjam-2023.love
|
gameData: ./build/*${{ matrix.template }}*/
|
||||||
itchUsername: ${{ inputs.ITCH_USERNAME }}
|
itchUsername: ${{ inputs.ITCH_USERNAME }}
|
||||||
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
itchGameId: ${{ inputs.ITCH_GAME_ID }}
|
||||||
buildChannel: ${{ matrix.channel }}
|
buildChannel: ${{ matrix.channel }}
|
||||||
buildNumber: ${{ needs.version.outputs.version_hash }} # TODO
|
buildNumber: ${{ needs.version.outputs.version_hash }} # TODO
|
||||||
deploy-condition-2:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: [package]
|
|
||||||
if: github.event_name != 'release'
|
|
||||||
setups:
|
|
||||||
- echo "Hi!"
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user