mirror of
https://github.com/Steffo99/particle-clash.git
synced 2024-11-21 15:14:19 +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"
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -39,8 +39,10 @@ jobs:
|
|||
run: |
|
||||
godot -v --export "${{ matrix.target }}"
|
||||
|
||||
- name: "⬆️ Upload artifact"
|
||||
uses: actions/upload-artifact@v1
|
||||
- name: "🌐 Create release"
|
||||
uses: ncipollo/release-action@v1.10.0
|
||||
with:
|
||||
name: "${{ matrix.target }}"
|
||||
path: "export/${{ matrix.target }}"
|
||||
artifactErrorsFailBuild: true
|
||||
artifacts: export/${{ matrix.target }}/*
|
||||
draft: true
|
||||
generateReleaseNotes: true
|
||||
|
|
Loading…
Reference in a new issue