Skip to content

Godot Builder

Godot Builder #13

Workflow file for this run

name: Godot Builder
on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+([a-zA-Z]*\-*)*'
jobs:
Godot:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [win64, linux, mac]
steps:
- name: Format Tag Name
id: replace_string
uses: frabert/replace-string-action@v2
with:
pattern: '\.'
string: ${{ github.ref_name }}
replace-with: '_'
- uses: actions/checkout@v2
with:
lfs: true
- name: Build
id: build
uses: felix-schindler/[email protected]
with:
name: "Reia_${{ steps.replace_string.outputs.replaced }}"
preset: ${{ matrix.platform }}
debugMode: "false"
- name: Create Release And Upload Asset
uses: softprops/action-gh-release@v1
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
files: build/Reia_${{ steps.replace_string.outputs.replaced }}
body: |
# Reia - `${{ github.ref_name }}`
...
### Changes
**Added:**
- ...
**Removed:**
- ...
**Changed:**
- ...
**Fixed:**
- ...
----
...
draft: true
prerelease: true