Skip to content

update to v6.92.2

update to v6.92.2 #2

Workflow file for this run

name: .NET Build, Test, and Publish Nuget Package
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: pack nuget packages
run: dotnet pack
- name: upload nuget package
run: dotnet nuget push src/Io.Gate.GateApi/bin/Debug/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json