1
Fork 0
mirror of https://github.com/Steffo99/particle-clash.git synced 2024-11-21 23:24:18 +00:00

Tweak github builder

This commit is contained in:
Steffo 2022-10-02 15:42:40 +02:00
parent 52117989cf
commit 93f0ca565a
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -1,9 +1,9 @@
name: "Build game release" name: "Build game release"
on: on:
release: push:
types: tags:
- published - "v*"
jobs: jobs:
build: build:
@ -39,8 +39,10 @@ jobs:
run: | run: |
godot -v --export "${{ matrix.target }}" godot -v --export "${{ matrix.target }}"
- name: "⬆️ Upload artifact" - name: "🌐 Create release"
uses: actions/upload-artifact@v1 uses: ncipollo/release-action@v1.10.0
with: with:
name: "${{ matrix.target }}" artifactErrorsFailBuild: true
path: "export/${{ matrix.target }}" artifacts: export/${{ matrix.target }}/*
draft: true
generateReleaseNotes: true