6
0
This commit is contained in:
Jon Michael Aanes 2023-11-09 20:28:00 +01:00
parent 5b02110fda
commit d35c191f51

View File

@ -3,8 +3,6 @@ name: LÖVE Game
on:
workflow_call:
inputs:
PUBLISH:
required: true
ITCH_USERNAME:
required: false
ITCH_GAME_ID:
@ -45,13 +43,12 @@ jobs:
name: "${{ github.event.repository.name }}.love"
path: "${{ github.workspace }}/bin/*.love"
if-no-files-found: error
# TODO: Fix
# - name: Uploading artifacts (win64)
# uses: actions/upload-artifact@v3
# with:
# name: "${{ github.event.repository.name }}-win64.zip"
# path: "${{ github.workspace }}/bin/*-win64.zip"
# if-no-files-found: error
- name: Uploading artifacts (win64)
uses: actions/upload-artifact@v3
with:
name: "${{ github.event.repository.name }}-win64.zip"
path: "${{ github.workspace }}/bin/*-win64.zip"
if-no-files-found: error
deploy:
name: Deploy - Itch.io
needs: [package]
@ -59,10 +56,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: mkdir build -p
# - uses: actions/download-artifact@v3
# with:
# name: kjam-2023.love
# path: ./build/kjam-2023.love
- uses: actions/download-artifact@v3
with:
name: kjam-2023.love
path: ./build/kjam-2023.love
path: ./build
- name: Look around
run: ls -lR build
- uses: KikimoraGames/itch-publish@v0.0.3