add release workflow

This commit is contained in:
MihailRis 2025-12-03 23:11:15 +03:00 committed by ShiftyX1
parent 4697969bdb
commit 092fe59c81
3 changed files with 26 additions and 0 deletions

View File

@ -5,6 +5,7 @@ on:
branches: [ "main", "release-**"]
pull_request:
branches: [ "main", "dev" ]
workflow_call:
jobs:
build-appimage:

View File

@ -5,6 +5,7 @@ on:
branches: [ "main", "release-**"]
pull_request:
branches: [ "main", "dev" ]
workflow_call:
jobs:
build-dmg:

24
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'Engine release version'
required: true
default: "0.0.0"
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- name: Build AppImage
uses: ./.github/workflows/appimage.yml
build_macos:
runs-on: ubuntu-latest
steps:
- name: Build DMG
uses: ./.github/workflows/macos.yml
build_windows:
runs-on: ubuntu-latest
steps:
- name: Build Exe
uses: ./.github/workflows/windows.yml