PrimeFuncPack Core.Unit v3.0.0 #166
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: .NET | |
on: | |
push: | |
branches: [ main, dev, feature/*, fix/*, release/* ] | |
pull_request: | |
branches: [ main ] | |
release: | |
types: [ published ] | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
# Create Local NuGet Source | |
- name: Create Local NuGet Directory | |
run: mkdir ~/nuget | |
- name: Add Local Nuget Source | |
run: dotnet nuget add source ~/nuget | |
# Unit | |
- name: Restore Unit | |
run: dotnet restore ./src/*/*/Unit.csproj | |
- name: Build Unit | |
run: dotnet build ./src/*/*/Unit.csproj --no-restore -c Release | |
- name: Pack Unit | |
run: dotnet pack ./src/*/*/Unit.csproj --no-restore -o ~/nuget -c Release | |
- name: Restore Unit.Tests.Old | |
run: dotnet restore ./src/*/*/Unit.Tests.Old.csproj | |
- name: Test Unit.Tests.Old | |
run: dotnet test ./src/*/*/Unit.Tests.Old.csproj --no-restore -c Release | |
- name: Restore Unit.Tests | |
run: dotnet restore ./src/*/*/Unit.Tests.csproj | |
- name: Test Unit.Tests | |
run: dotnet test ./src/*/*/Unit.Tests.csproj --no-restore -c Release | |
# Push | |
- name: Push Packages | |
if: ${{ github.event_name == 'release' }} | |
run: > | |
dotnet nuget push "../../../nuget/*.nupkg" | |
-s https://api.nuget.org/v3/index.json | |
-k ${{ secrets.NuGetSourcePassword }} | |
--skip-duplicate |