concepts and flows experiment #11
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: Publish NuGet Package | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/dotnet/sdk:8.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: publish migtool | |
run: | | |
dotnet tool restore | |
dotnet paket restore | |
dotnet publish -c Release | |
dotnet pack | |
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json | |
working-directory: ./Cli | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
- name: publish MigrateLib | |
run: | | |
dotnet tool restore | |
dotnet paket restore | |
dotnet publish -c Release | |
dotnet pack | |
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json | |
working-directory: ./Lib | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |