remove report #8
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 | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.gitignore' | |
- '**/*.gitattributes' | |
workflow_dispatch: | |
jobs: | |
build: | |
if: github.event_name == 'push' && contains(toJson(github.event.commits), '***NO_CI***') == false && contains(toJson(github.event.commits), '[ci skip]') == false && contains(toJson(github.event.commits), '[skip ci]') == false | |
name: Build | |
runs-on: windows-latest | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
DOTNET_ADD_GLOBAL_TOOLS_TO_PATH: false | |
DOTNET_MULTILEVEL_LOOKUP: 0 | |
PACKAGE_PROJECT: analyzer\Nall.NEST.MigtarionAnalyzer.Package | |
VSIX_PROJECT: analyzer\Nall.NEST.MigtarionAnalyzer.Vsix | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v4.0.1 | |
with: | |
dotnet-version: 8.0.401 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v2.0.0 | |
- name: Add NuGet Source | |
run: nuget sources Add -Name "Github" -Source https://nuget.pkg.github.com/nikiforovall/index.json -UserName nikiforovall -Password ${{secrets.GITHUB_TOKEN}} | |
- name: Build NuGet Package | |
run: | | |
msbuild /restore ${{ env.PACKAGE_PROJECT }} /p:Configuration=Release /p:PackageOutputPath=${{ github.workspace }}\artifacts | |
- name: Build VSIX Package | |
run: | | |
msbuild /restore ${{ env.VSIX_PROJECT }} /p:Configuration=Release /p:OutDir=${{ github.workspace }}\artifacts | |
- name: Push to GitHub Packages | |
run: nuget push ${{ github.workspace }}\artifacts\*.nupkg -Source "Github" | |
# upload artifacts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3.2.1 | |
with: | |
name: release-pacakges | |
path: | | |
${{ github.workspace }}\artifacts\**\*.vsix | |
${{ github.workspace }}\artifacts\**\*.nupkg |