Skip to content

Merge pull request #982 from blish-hud/dlamkins-patch-1 #558

Merge pull request #982 from blish-hud/dlamkins-patch-1

Merge pull request #982 from blish-hud/dlamkins-patch-1 #558

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags-ignore:
- v*
jobs:
nightly:
name: Nightly
runs-on: windows-latest
steps:
- uses: actions/checkout@v4.1.1
with:
submodules: 'true'
fetch-depth: 0
- uses: microsoft/setup-msbuild@v2
- 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/setup@v1.1.1
with:
versionSpec: '5.x'
- uses: gittools/actions/gitversion/execute@v1.1.1
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/upload-artifact@v4
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/upload-artifact@v4
with:
name: Blish HUD ${{ steps.gitversion.outputs.semVer }} NuGet packages
path: Blish HUD/bin/Release/BlishHUD.${{ steps.gitversion.outputs.semVer }}.*nupkg