6
0

Weird stuff

This commit is contained in:
Jon Michael Aanes 2023-11-09 19:41:34 +01:00
parent 1ce5663d8c
commit b1b5476f2a

View File

@ -52,17 +52,15 @@ jobs:
# name: "${{ github.event.repository.name }}-win64.zip"
# path: "${{ github.workspace }}/bin/*-win64.zip"
# if-no-files-found: error
deploy:
deploy-condition:
runs-on: ubuntu-latest
needs: [package]
if: inputs.PUBLISH
strategy:
fail-fast: true
matrix:
channel: # TODO
- love
#- win64 # TODO
setups:
- echo "Hi!"
deploy:
runs-on: ubuntu-latest
needs: [package, deploy-condition]
name: Deploy - Itch.io ${{ matrix.template }}
steps:
@ -79,3 +77,9 @@ jobs:
itchGameId: ${{ inputs.ITCH_GAME_ID }}
buildChannel: ${{ matrix.channel }}
buildNumber: ${{ needs.version.outputs.version_hash }} # TODO
deploy-condition-2:
runs-on: ubuntu-latest
needs: [package]
if: github.event_name != 'release'
setups:
- echo "Hi!"