mirror of
https://github.com/OpenMW/openmw.git
synced 2026-05-06 07:56:40 -04:00
28 lines
485 B
YAML
28 lines
485 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- openmw-**
|
|
|
|
jobs:
|
|
Windows:
|
|
uses: ./.github/workflows/windows.yml
|
|
with:
|
|
image: "2022"
|
|
build-type: Release
|
|
package: true
|
|
release: true
|
|
secrets: inherit
|
|
MacOS:
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
args:
|
|
- image: macos-15
|
|
- image: macos-15-intel
|
|
uses: ./.github/workflows/macos.yml
|
|
with:
|
|
image: ${{ matrix.args.image }}
|
|
build-type: Release
|