fix request serialization #37
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: Push local Packages to Nuget.org | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
folder: [Bones.Akka.Monitoring.Weaver] | |
steps: | |
# Checking out repository | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
# pack file to publish to NuGet | |
- name: Create a NuGet Package 🔧 | |
run: | | |
export VERSION=${{ github.ref_name }} | |
cd src/${{matrix.folder}}.Fody | |
dotnet build | |
cd ../${{matrix.folder}} | |
dotnet build | |
# Publishing with tag name as version | |
- name: Publishing to NuGet 🚀 | |
run: | | |
cd src/${{ matrix.folder}}/nugets | |
dotnet nuget push ${{matrix.folder}}.Fody.${{ github.ref_name}}.nupkg -k ${{ secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json |