Skip to content

Merge pull request #43 from gateio/gateio-patch-1 #1

Merge pull request #43 from gateio/gateio-patch-1

Merge pull request #43 from gateio/gateio-patch-1 #1

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