-
Notifications
You must be signed in to change notification settings - Fork 37
66 lines (56 loc) · 1.68 KB
/
packages-ci.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
name: Packages CI
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
permissions:
contents: write
id-token: write
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: 'global.json'
dotnet-version: |
6.x
8.x
- name: Version
id: version
uses: ./.github/actions/compute-version
- name: Build
uses: ./.github/actions/dotnet-build
with:
assemblyVersion: ${{ steps.version.outputs.assemblyVersion }}
buildConfiguration: Release
fileVersion: ${{ steps.version.outputs.fileVersion }}
informationalVersion: ${{ steps.version.outputs.informationalVersion }}
- name: Login
uses: azure/login@v2
with:
allow-no-subscriptions: true
client-id: ${{ secrets.CLIENT_ID }}
tenant-id: ${{ secrets.TENANT_ID }}
- name: Publish
uses: ./.github/actions/dotnet-publish
with:
buildConfiguration: Release
packageFolder: ${{ github.workspace }}/packages
packageVersion: ${{ steps.version.outputs.nuGetVersion }}
- name: Release
uses: ./.github/actions/github-release
with:
commitSha: ${{ github.sha }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
packageFolder: ${{ github.workspace }}/packages
repository: ${{ github.repository }}
tag: v${{ steps.version.outputs.nuGetVersion }}
title: '${{ steps.version.outputs.nuGetVersion }}: ${{ github.event.head_commit.message }}'