Skip to content

UserAgent exposed for HTTP requests #19

UserAgent exposed for HTTP requests

UserAgent exposed for HTTP requests #19

Workflow file for this run

name: .NET Core
on:
pull_request:
push:
release:
types: [published]
jobs:
build:
name: Build
env:
NUPKG_MAJOR: 2.2
CODESIGN_PFX: ${{ secrets.CODESIGN_PFX }}
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Setup NuGet 5.x
uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.3
- name: Build
run: msbuild -r -p:Configuration=Release
# - name: Test
# run: dotnet test --configuration Release
- name: Package NuGets
shell: pwsh
run: |
$VERSION="$env:NUPKG_MAJOR-ci$env:GITHUB_RUN_ID"
if ($env:GITHUB_EVENT_NAME -eq "release") {
$VERSION = $env:GITHUB_REF.Substring($env:GITHUB_REF.LastIndexOf('/') + 1)
}
echo "::set-output name=pkgverci::$VERSION"
echo "PACKAGE VERSION: $VERSION"
msbuild -t:Pack -r -p:PackageOutputPath=..\artifacts -p:Configuration=Release -p:PackageVersion=$VERSION .\MavenNet\MavenNet.csproj
$pfxPath = Join-Path -Path $pwd -ChildPath "codesigncert.pfx"
[IO.File]::WriteAllBytes("$pfxPath", [System.Convert]::FromBase64String($env:CODESIGN_PFX))
nuget sign .\artifacts\*.nupkg -CertificatePath $pfxPath -Timestamper http://timestamp.entrust.net/TSS/RFC3161sha2TS
- name: Artifacts
uses: actions/upload-artifact@v1
with:
name: NuGet
path: .\artifacts
publish:
name: Publish
needs: build
runs-on: windows-latest
if: github.event_name == 'release'
steps:
- name: Download Artifacts
uses: actions/download-artifact@v1
with:
name: NuGet
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Push NuGet
run: |
dotnet nuget push NuGet\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ORG_API_KEY }}