Expose render resolution directly #26
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
SOLUTION_FILE_PATH: . | |
BUILD_CONFIGURATION: Release | |
STEAM_PATH: temp | |
jobs: | |
Win64: | |
runs-on: windows-2022 | |
steps: | |
- name: Clone repo and submodule | |
run: | | |
git clone --recurse-submodules https://github.com/${{github.repository}}.git . | |
- name: Get current date, commit hash and count | |
run: | | |
echo "CurrentDate=$(date +'%Y-%m-%d')" >> $env:GITHUB_ENV | |
echo "CommitHashShort=$(git rev-parse --short=7 HEAD)" >> $env:GITHUB_ENV | |
echo "CommitCount=$(git rev-list --count $env:GITHUB_REF_NAME)" >> $env:GITHUB_ENV | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Restore NuGet packages | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
run: nuget restore ${{env.SOLUTION_FILE_PATH}} | |
- name: Build | |
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} | |
- name: Compress artifacts | |
uses: vimtor/[email protected] | |
with: | |
files: output/drivers/ README.md LICENSE | |
dest: "output/${{github.event.repository.name}}.zip" | |
- name: GitHub pre-release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{secrets.GITHUB_TOKEN}}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "[${{env.CurrentDate}}] ${{github.event.repository.name}} r${{env.CommitCount}}@${{env.CommitHashShort}}" | |
files: "output/${{github.event.repository.name}}.zip" |