diff --git a/.gitea/workflows/love2d.yaml b/.gitea/workflows/love2d.yaml index ec12e71..b29a43e 100644 --- a/.gitea/workflows/love2d.yaml +++ b/.gitea/workflows/love2d.yaml @@ -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