-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (52 loc) · 1.87 KB
/
release.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Build-and-Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
env:
DOTNET_VERSION: 8.0.x
jobs:
build:
runs-on: windows-latest
timeout-minutes: 15
outputs:
version: ${{ steps.set-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Verify commit exists in origin/main
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git branch --remote --contains | grep origin/main
- name: Set VERSION variable from tag
id: set-version
run: |
$version = $env:GITHUB_REF -replace 'refs/tags/v',''
echo "version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Build
run: dotnet build --configuration Release -p:Version=${{ env.VERSION }}
- name: Test
run: dotnet test --configuration Release -p:Version=${{ env.VERSION }} --no-build
- name: Pack
run: dotnet pack --configuration Release -p:Version=${{ env.VERSION }} --no-build --output ./publish
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: nuget-package
path: ./publish
publish:
needs: build
runs-on: windows-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: nuget-package
path: ./publish
- name: Push to NuGet
run: dotnet nuget push **/*.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}