Update description #64
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@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
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 | |
# DependencyRegistry | |
- name: Restore DependencyRegistry | |
run: dotnet restore ./src/*/*/DependencyRegistry.csproj | |
- name: Build DependencyRegistry | |
run: dotnet build ./src/*/*/DependencyRegistry.csproj --no-restore -c Release | |
- name: Pack DependencyRegistry | |
run: dotnet pack ./src/*/*/DependencyRegistry.csproj --no-restore -o ~/nuget -c Release | |
- name: Restore DependencyRegistry.Tests | |
run: dotnet restore ./src/*/*/DependencyRegistry.Tests.csproj | |
- name: Test DependencyRegistry.Tests | |
run: dotnet test ./src/*/*/DependencyRegistry.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 |