mirror of https://github.com/OpenMW/openmw.git
Try to build in Release mode
parent
853c4287d2
commit
793a56a882
@ -0,0 +1,24 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
|
||||||
|
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:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- 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
|
@ -0,0 +1 @@
|
|||||||
|
VCPKG_DEPS_TAG=2024-11-10
|
Loading…
Reference in New Issue