Upload symbols to symbol server if inputs.package is enabled #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- openmw-** | |
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@v4 | |
- 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 |