-
Notifications
You must be signed in to change notification settings - Fork 21
43 lines (42 loc) · 1.46 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
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/[email protected]
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 package
runs-on: windows-latest
needs: [test-build]
if: needs.test-build.result == 'success'
steps:
- uses: actions/[email protected]
with:
dotnet-version: 8.0
- uses: actions/checkout@v4
- name: Get Current Time
id: current-time
uses: josStorer/[email protected]
with:
format: YYYYMMDD-HHmmss
utcOffset: "+08:00"
- name: Restore packages
run: dotnet restore ProjBobcat/ProjBobcat.sln
- name: Create the package
run: dotnet pack ProjBobcat/ProjBobcat.sln -c Release -p:PackageVersion=beta-${{ steps.current-time.outputs.formattedTime }}-${{github.sha}}"
- name: Publish the package to NuGet.org
run: dotnet nuget push -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json "ProjBobcat/ProjBobcat/bin/Release/*.nupkg"