-
Notifications
You must be signed in to change notification settings - Fork 4
169 lines (166 loc) Β· 5.92 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActionsSteps (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_ci --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: ci
on:
workflow_dispatch:
workflow_call:
secrets:
THIS_IS_A_SECRET:
required: False
RSG_NUGET_API_KEY:
required: False
RSG_AZURE_DEVOPS:
required: False
CODECOV_TOKEN:
description: 'The codecov token'
required: False
push:
branches:
- 'master'
- 'main'
- 'next'
tags:
- 'v*'
paths-ignore:
- '.codecov.yml'
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- '.lintstagedrc.js'
- '.prettierignore'
- '.prettierrc'
- 'LICENSE'
- 'nukeeper.settings.json'
- 'omnisharp.json'
- 'package-lock.json'
- 'package.json'
- 'Readme.md'
- '.github/dependabot.yml'
- '.github/labels.yml'
- '.github/release.yml'
- '.github/renovate.json'
pull_request:
branches:
- 'master'
- 'main'
- 'next'
paths-ignore:
- '.codecov.yml'
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- '.lintstagedrc.js'
- '.prettierignore'
- '.prettierrc'
- 'LICENSE'
- 'nukeeper.settings.json'
- 'omnisharp.json'
- 'package-lock.json'
- 'package.json'
- 'Readme.md'
- '.github/dependabot.yml'
- '.github/labels.yml'
- '.github/release.yml'
- '.github/renovate.json'
permissions:
actions: read
checks: read
contents: read
deployments: read
id-token: none
issues: write
discussions: none
packages: none
pages: none
pull-requests: write
repository-projects: none
security-events: none
statuses: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@6b42224f41ee5dfe5395e27c8b2746f1f9955030
with:
clean: 'false'
fetch-depth: '0'
- name: π¨ Use .NET Core 8.0 SDK
uses: actions/setup-dotnet@v4.0.1
with:
dotnet-version: '8.0.x'
- name: π dotnet workload restore
continue-on-error: true
run: |
dotnet workload restore
- name: βοΈ dotnet tool restore
run: |
dotnet tool restore
- name: π Restore
id: restore
run: |
dotnet nuke --target DotnetCoreRestore Restore --ThisIsAOtherVariable "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAnotherVariable "${{ vars.THIS_IS_ANOTHER_VARIABLE }}" --THIS_IS_A_VARIABLE "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAEnv "${{ env.THIS_IS_A_ENV || 'test' }}" --ThisIsASecret "${{ secrets.THIS_IS_A_SECRET }}" --GitHubToken "${{ secrets.GITHUB_TOKEN }}"
- name: βοΈ Build
id: build
run: |
dotnet .build/bin/Debug/.build.dll --target DotnetCoreBuild Build --ThisIsAOtherVariable "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAnotherVariable "${{ vars.THIS_IS_ANOTHER_VARIABLE }}" --THIS_IS_A_VARIABLE "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAEnv "${{ env.THIS_IS_A_ENV || 'test' }}" --ThisIsASecret "${{ secrets.THIS_IS_A_SECRET }}" --GitHubToken "${{ secrets.GITHUB_TOKEN }}"
- name: π¦ Test
id: test
run: |
dotnet .build/bin/Debug/.build.dll --target DotnetCoreTest Test TriggerCodeCoverageReports GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport --ThisIsAOtherVariable "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAnotherVariable "${{ vars.THIS_IS_ANOTHER_VARIABLE }}" --THIS_IS_A_VARIABLE "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAEnv "${{ env.THIS_IS_A_ENV || 'test' }}" --ThisIsASecret "${{ secrets.THIS_IS_A_SECRET }}" --GitHubToken "${{ secrets.GITHUB_TOKEN }}"
- name: π¦ Pack
id: pack
run: |
dotnet .build/bin/Debug/.build.dll --target DotnetCorePack Pack --skip Build --ThisIsAOtherVariable "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAnotherVariable "${{ vars.THIS_IS_ANOTHER_VARIABLE }}" --THIS_IS_A_VARIABLE "${{ vars.THIS_IS_A_VARIABLE }}" --ThisIsAEnv "${{ env.THIS_IS_A_ENV || 'test' }}" --ThisIsASecret "${{ secrets.THIS_IS_A_SECRET }}" --GitHubToken "${{ secrets.GITHUB_TOKEN }}"
- name: πΊ Publish coverage data
if: always()
uses: actions/upload-artifact@v4
with:
name: 'coverage'
path: 'coverage/'
- name: π« Publish Coverage
if: (github.event_name != 'pull_request' && github.event_name != 'pull_request_target') || ((github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]')
uses: codecov/codecov-action@v4
with:
name: 'actions-${{ matrix.os }}'
token: '${{ secrets.CODECOV_TOKEN }}'
- name: πΊ Publish logs
if: always()
uses: actions/upload-artifact@v4
with:
name: 'logs'
path: 'artifacts/logs/'
- name: πΊ Publish test data
if: always()
uses: actions/upload-artifact@v4
with:
name: 'test data'
path: 'artifacts/test/'
- name: πΊ Publish NuGet Packages
if: always()
uses: actions/upload-artifact@v4
with:
name: 'nuget'
path: 'artifacts/nuget/'
Publish:
needs:
- Build
uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.10
secrets:
RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}'
RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}'