👾 [BUG]: Fixed an issue where precision was lost when numbers were pa… #461
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: NanUI CI/CD Pipeline | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
ci: | |
runs-on: windows-2022 | |
steps: | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "7.0.x" | |
- name: Get .NET information | |
run: dotnet --info | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
with: | |
vs-version: "[17.0,18.0)" | |
vs-prerelease: true | |
- name: Checkout repository | |
id: checkout_repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Clean .NET cache | |
id: clean_dotnet_cache | |
shell: pwsh | |
run: | | |
dotnet clean .\WinFormiumProject-EN.sln | |
dotnet nuget locals all --clear | |
- name: Install NuGet packages | |
id: install_nuget_packages | |
shell: pwsh | |
run: | | |
nuget restore .\WinFormiumProject-EN.sln | |
- name: Build solution | |
id: build_solution | |
shell: pwsh | |
run: | | |
msbuild .\WinFormiumProject-EN.sln -property:Configuration=Release | |
- name: Install Nuget | |
run: | | |
$sourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" | |
$targetNugetExe = "nuget.exe" | |
Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe | |
- name: Push Nuget package | |
run: | | |
.\nuget.exe push .\bin\NetDimension.NanUI.*.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_KEY }} -NoSymbols -SkipDuplicate | |
.\nuget.exe push .\bin\NetDimension.NanUI.*.snupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_KEY }} -SkipDuplicate | |
# Built with ❤ by [Pipeline Foundation](https://pipeline.foundation) |