-
-
Notifications
You must be signed in to change notification settings - Fork 2
27 lines (24 loc) · 809 Bytes
/
publish.yml
File metadata and controls
27 lines (24 loc) · 809 Bytes
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
27
name: Publish
on:
push:
branches:
- main
workflow_dispatch:
jobs:
publish:
name: Publish NuGet package
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Publish NuGet package
uses: rohith/publish-nuget@c12b8546b67672ee38ac87bea491ac94a587f7cc
with:
PROJECT_FILE_PATH: src/Exercism.Tests/Exercism.Tests.csproj
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}
INCLUDE_SYMBOLS: true
- uses: rohith/publish-nuget@c12b8546b67672ee38ac87bea491ac94a587f7cc # 2.5.5
with:
PROJECT_FILE_PATH: src/Exercism.Tests.xunit.v3/Exercism.Tests.xunit.v3.csproj
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}
INCLUDE_SYMBOLS: true