-
-
Notifications
You must be signed in to change notification settings - Fork 87
94 lines (82 loc) · 2.34 KB
/
lib.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
name: Release
env:
VERSION: '5.2.1'
ASM_VERSION: '5.0.0'
# VERSION_SUFFIX: '-pre.1'
VERSION_SUFFIX: ''
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: run tests
run: dotnet test src/Config.Net.sln -c release --filter Category!=Integration
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: Build
run: dotnet build src/Config.Net.sln --configuration Release /p:Version=${{ env.VERSION }}${{ env.VERSION_SUFFIX }} /p:FileVersion=${{ env.VERSION }} /p:AssemblyVersion=${{ env.ASM_VERSION }}
- name: collect artifacts
run: |
mkdir -p artifacts
cp src/Config.Net/bin/Release/*.nupkg artifacts/
echo "${{ env.VERSION }}" >> artifacts/version.txt
cp docs/release-history.md artifacts/
grep -m 2 -B 1000 '^## ' artifacts/release-history.md | tail -n +3 | head -n -2 > artifacts/release-notes.md
cat artifacts/release-notes.md
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: bin
path: artifacts/*
release:
runs-on: ubuntu-latest
needs:
- build
- test
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/download-artifact@v4
with:
name: bin
- name: print releaes notes
run: cat release-notes.md
# publish to nuget regardless
- name: Push to nuget.org
run: dotnet nuget push *.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
# - name: prerelease
# if: ${{ env.VERSION_SUFFIX }}
# run: echo 'hey'
# - name: release
# if: ${{ !env.VERSION_SUFFIX }}
# run: echo 'hey'
- name: 📢 Create release
uses: softprops/action-gh-release@v1
if: ${{ !env.VERSION_SUFFIX }}
with:
tag_name: ${{ env.VERSION }}
name: ${{ env.VERSION }}
files: |
*.nupkg
body_path: release-notes.md