2024-12-10 19:30:47 +00:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
2024-12-11 20:33:14 +00:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- openmw-**
|
2024-12-10 19:30:47 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Output-Envs:
|
|
|
|
name: Read .env file and expose it as output
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
VCPKG_DEPS_TAG: ${{ env.VCPKG_DEPS_TAG }}
|
|
|
|
steps:
|
2024-12-12 18:16:40 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-12-10 19:30:47 +00:00
|
|
|
- run: cat "${{ github.workspace }}/CI/github.env" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
Windows:
|
|
|
|
needs:
|
|
|
|
- Output-Envs
|
|
|
|
uses: ./.github/workflows/windows.yml
|
|
|
|
with:
|
|
|
|
image: "2022"
|
|
|
|
vcpkg-deps-tag: ${{ needs.Output-Envs.outputs.VCPKG_DEPS_TAG }}
|
|
|
|
build-type: Release
|
|
|
|
package: true
|
2024-12-30 23:55:20 +00:00
|
|
|
release: true
|
2024-12-18 15:30:16 +00:00
|
|
|
secrets: inherit
|