preparing release #12
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 r0b0t tool | |
run: | | |
dotnet 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: ./r0b0t | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
- name: publish r0b0t library | |
run: | | |
dotnet 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: ./R0b0t.Lib | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |