-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (36 loc) · 865 Bytes
/
release.yml
File metadata and controls
43 lines (36 loc) · 865 Bytes
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: Release
on:
push:
tags:
- "*.*.*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DOTNET_VERSION: "9.0.x"
permissions:
checks: write
contents: read
jobs:
call_buildAndPublish:
uses: ./.github/workflows/buildAndPublish.yml
with:
feedUrl: https://api.nuget.org/v3/index.json
forRelease: true
secrets:
feedAPIKey: ${{ secrets.NUGET_API_KEY }}
generate_docs:
uses: ./.github/workflows/generateDocs.yml
publish_docs:
needs: [call_buildAndPublish, generate_docs]
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.url }}
runs-on: ubuntu-latest
steps:
- name: Publish documentation
uses: actions/deploy-pages@v4
id: deployment