add release workflow
This commit is contained in:
parent
4697969bdb
commit
092fe59c81
1
.github/workflows/appimage.yml
vendored
1
.github/workflows/appimage.yml
vendored
@ -5,6 +5,7 @@ on:
|
||||
branches: [ "main", "release-**"]
|
||||
pull_request:
|
||||
branches: [ "main", "dev" ]
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
build-appimage:
|
||||
|
||||
1
.github/workflows/macos.yml
vendored
1
.github/workflows/macos.yml
vendored
@ -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
24
.github/workflows/release.yml
vendored
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user