generated from krampus/template-godot4
Added gitea publish action
itch.io publish action / build (push) Failing after 0s
Details
itch.io publish action / build (push) Failing after 0s
Details
This commit is contained in:
parent
0acfa25b19
commit
8333cf0cf2
|
@ -0,0 +1,24 @@
|
||||||
|
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
|
||||||
|
steps:
|
||||||
|
- name: Setup environment
|
||||||
|
- run: snap install godot-4
|
||||||
|
- run: |
|
||||||
|
curl -L -o butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default \
|
||||||
|
&& unzip butler.zip \
|
||||||
|
&& chmod +x butler \
|
||||||
|
&& ./butler -V
|
||||||
|
- name: Build project
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- run: ./debug_build.sh -f
|
Loading…
Reference in New Issue