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:
parent
52117989cf
commit
93f0ca565a
1 changed files with 10 additions and 8 deletions
18
.github/workflows/godot-build.yml
vendored
18
.github/workflows/godot-build.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue