-
Notifications
You must be signed in to change notification settings - Fork 21
46 lines (45 loc) · 1.6 KB
/
pre-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
name: Publish Pre-Release Version NuGet Package
on:
push:
branches: [master]
jobs:
test-build:
name: Test build on ${{ matrix.os }} .NET 8.0
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0
- uses: actions/checkout@v4
- name: Restore packages
run: dotnet restore ProjBobcat/ProjBobcat.sln
- name: Build Test
run: dotnet build ProjBobcat/ProjBobcat.sln -c Release --no-restore
publish-package:
name: Publish PreRelease package
runs-on: windows-latest
needs: [test-build]
if: needs.test-build.result == 'success'
steps:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get previous tag
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
with:
fallback: 1.0.0
- name: Restore packages
run: dotnet restore ProjBobcat/ProjBobcat.sln
- name: Build the project
run: dotnet build ProjBobcat/ProjBobcat.sln -c Release --no-restore
- name: Create the package
run: $tag="${{ steps.previoustag.outputs.tag }}".replace("v",""); dotnet pack ProjBobcat/ProjBobcat.sln -c Release -p:PackageVersion="$tag-CI${{ github.sha }}-beta" --no-build --no-restore -o .
- name: Publish the package to NuGet.org
run: dotnet nuget push *.nupkg -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json