-
Notifications
You must be signed in to change notification settings - Fork 86
38 lines (30 loc) · 941 Bytes
/
main.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
name: main
on: [push, pull_request]
# Needed for .NET 9 support, as this is currently not included on ubuntu-latest
env:
DOTNET_VERSION: '9.0.x'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
run: |
dotnet restore dotnet-packaging.sln
dotnet pack dotnet-packaging.sln -c Release -o pkg/
cp demo/Directory.Build.props pkg/
cp demo/version.txt pkg/
- name: Test
run: |
dotnet test Packaging.Targets.Tests/Packaging.Targets.Tests.csproj -l "trx;LogFileName=pkg/Packaging.Targets.Tests.trx"
- uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: pkg
path: pkg/