-
Notifications
You must be signed in to change notification settings - Fork 16
26 lines (26 loc) · 1 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: publish to nuget
on:
push:
branches:
- master # Default release branch
jobs:
publish:
name: build, pack & publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Publish
- name: publish on version change
id: publish_nuget
uses: brandedoutcast/publish-nuget@v2
with:
# Filepath of the project to be packaged, relative to root of repository
PROJECT_FILE_PATH: Bitmex.Net/Bitmex.Net.Client.csproj
# NuGet package id, used for version detection & defaults to project name
PACKAGE_NAME: Bitmex.Net.Client
# Filepath with version info, relative to root of repository & defaults to PROJECT_FILE_PATH
#VERSION_FILE_PATH: common.props
# Regex pattern to extract version info in a capturing group
VERSION_REGEX: <Version>(.*)<\/Version>
# API key to authenticate with NuGet server
NUGET_KEY: ${{secrets.NUGET_API_KEY}}