name: itch.io publish action run-name: ${{ gitea.actor }} is publishing ${{ gitea.repository }} ${{ gitea.ref }} to itch.io. on: push: branches: - ci-test tags: - v* jobs: build: runs-on: ubuntu-latest env: PNAME: ${{ gitea.event.repository.name }} strategy: matrix: platform: [linux, mac, windows] steps: - name: Dump context run: echo "$GITEA_CONTEXT" shell: bash env: GITEA_CONTEXT: ${{ toJson(gitea) }} - name: Checkout repository run: | git init - name: Build project uses: yeslayla/build-godot-action@v1.5.0 with: name: gfolf preset: ${{ matrix.platform }} debugMode: "true" - name: Upload artifact uses: actions/upload-artifact@v4