1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-06 18:45:35 +00:00
openmw/.github/workflows/release.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
607 B
YAML
Raw Normal View History

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