Secret Legacy Mode: Remove #349
Workflow file for this run
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@v4 | |
- name: Setup .NET 6 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 6.0.414 | |
- name: Setup .NET 7 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 7.0.401 | |
- name: .NET Core SxS | |
run: | | |
rsync -a ${DOTNET_ROOT/7.0.401/6.0.414}/* $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 |