Merge pull request #146 from shinji-san/dependabot/nuget/develop/Micr… #317
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: SecretSharingDotNet (All supported TFM) | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 6 | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: 6.0.100 | |
- name: Setup .NET 7 | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: 7.0.100 | |
- name: .NET Core SxS | |
run: | | |
rsync -a ${DOTNET_ROOT/7.0.100/6.0.100}/* $DOTNET_ROOT/ | |
- name: Restore | |
run: dotnet restore SecretSharingDotNet.sln | |
- name: Build | |
run: dotnet build --configuration Release SecretSharingDotNet.sln | |
- name: Test | |
run: dotnet test --configuration Release SecretSharingDotNet.sln | |
- name: Prepare README.md for NuGet package | |
run: | | |
grep -n "## Install SecretSharingDotNet package" README.md | cut -d: -f 1| xargs -i tail -n +{} README.md > TMP.md && sed -i '1s/^/# Setup\r\n/' TMP.md && mv -f TMP.md README.md | |
grep -n "# CLI building instructions" README.md | cut -d: -f 1| xargs -i head -n {} README.md | head -n -1 > TMP.md && mv -f TMP.md README.md | |
- name: Create Package | |
run: dotnet pack --configuration Release SecretSharingDotNet.sln |