-
Notifications
You must be signed in to change notification settings - Fork 2
99 lines (79 loc) · 2.83 KB
/
cicd.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: CI/CD
on:
pull_request:
push:
branches:
- main
tags:
- 'v*'
jobs:
build_test_pack:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '6.x'
- name: Determine generated version number
id: version_step # step id used as reference for output values
uses: gittools/actions/gitversion/[email protected]
- name: Determine version number to use
run: |
## Default to using the version from GitVersion
version=${{ steps.version_step.outputs.fullSemVer }}
## If this is a tag, use the version from the tag
if [[ ${{ github.event_name }} == 'push' && ${{ github.ref }} == 'refs/tags/v*' ]]; then
version=${{ github.ref_name }}
version=${version:1} ## Remove the leading 'v'
fi
echo "Version to use: $version"
echo "VERSION=$version" >> $GITHUB_ENV
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Pack
run: |
dotnet pack --configuration Release --no-build --output ./nupkg /p:PackageVersion=$VERSION
- name: Upload NuGet package (for use by later jobs)
uses: actions/upload-artifact@v4
with:
name: nupkg
path: ./nupkg/*.nupkg
publish:
## Only attempt to publish if the build job was successful
needs: build_test_pack
runs-on: ubuntu-latest
## Do not attempt to publish the nuget package if this is a dependabot PR
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download NuGet package
uses: actions/download-artifact@v4
with:
name: nupkg
path: ./nupkg
## Publish to GitHub Packages - including pre-release versions
- name: Publish to GitHub
env:
NUGET_API_KEY: ${{ secrets.GITHUB_TOKEN }}
run: dotnet nuget push ./nupkg/*.nupkg --api-key $NUGET_API_KEY --source "https://nuget.pkg.github.com/DFE-Digital/index.json"
## Publish to NuGet.org - only for main branch pushes
##- name: Publish to NuGet.org
## if: github.ref == 'refs/heads/main' && github.event_name == 'push'
## env:
## NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
## run: dotnet nuget push ./nupkg/*.nupkg --api-key $NUGET_API_KEY --source "https://api.nuget.org/v3/index.json"