Merge pull request #946 from Tharylia/log-utc-timestamps #59
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- v* | |
jobs: | |
nightly: | |
name: Nightly | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: 'true' | |
fetch-depth: 0 | |
- uses: microsoft/[email protected] | |
- name: Ensure dotnet 3.1 is available | |
shell: powershell | |
run: | | |
choco install dotnetcore-3.1-runtime | |
# GitVersion action doesn't support /ensureassemblyinfo, see https://github.com/GitTools/actions/issues/220 | |
# So we need to create a new file to let GitVersion populate it | |
- name: Create assembly info file for GitVersion | |
shell: powershell | |
run: | | |
set-Content -Path 'Blish HUD/Properties/AssemblyVersionInfo.cs' -Value 'using System.Reflection;' | |
- uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: '5.x' | |
- uses: gittools/actions/gitversion/[email protected] | |
id: gitversion | |
with: | |
updateAssemblyInfo: true | |
updateAssemblyInfoFilename: Blish HUD/Properties/AssemblyVersionInfo.cs | |
- name: Run msbuild restore | |
run: msbuild -t:restore | |
- name: Run msbuild | |
run: msbuild -p:Configuration=Release -p:VERSIONED_BUILD=${{ steps.gitversion.outputs.semVer }} | |
- name: Delete documentation file before artifact | |
shell: powershell | |
run: | | |
remove-item "Blish HUD/bin/x64/Release/net472/Blish HUD.xml" | |
- name: Upload build artifact | |
uses: actions/[email protected] | |
with: | |
name: Blish HUD ${{ steps.gitversion.outputs.semVer }} | |
path: Blish HUD/bin/x64/Release/net472 | |
- name: Run dotnet pack | |
run: dotnet pack "Blish HUD" -c Release -p:VERSIONED_BUILD=${{ steps.gitversion.outputs.semVer }} | |
- name: Upload NuGet package artifacts | |
uses: actions/[email protected] | |
with: | |
name: Blish HUD ${{ steps.gitversion.outputs.semVer }} NuGet packages | |
path: Blish HUD/bin/Release/BlishHUD.${{ steps.gitversion.outputs.semVer }}.*nupkg |