Skip to content

Commit 97aabb7

Browse files
Create private-dataminer-cicd-nugetsolution.yml
1 parent 0a0e304 commit 97aabb7

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: DataMiner CICD NuGet Solution
2+
3+
# Controls when the workflow will run
4+
on:
5+
# Triggers the workflow on push or pull request events.
6+
push:
7+
branches: []
8+
tags:
9+
- "[0-9]+.[0-9]+.[0-9]+.[0-9]+"
10+
- "[0-9]+.[0-9]+.[0-9]+"
11+
- "[0-9]+.[0-9]+.[0-9]+.[0-9]+-**"
12+
- "[0-9]+.[0-9]+.[0-9]+-**"
13+
14+
# Allows you to run this workflow manually from the Actions tab
15+
workflow_dispatch:
16+
17+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
18+
jobs:
19+
20+
# Note: Tagging will push the nupackage to nuget.org using the provided NUGETAPIKEY. You can tag both a prerelease version (a.b.c-xxxx) or a stable release (a.b.c).
21+
CICD:
22+
uses: SkylineCommunications/_ReusableWorkflows/.github/workflows/NuGet Solution Master Workflow.yml@main
23+
with:
24+
referenceName: ${{ github.ref_name }}
25+
runNumber: ${{ github.run_number }}
26+
referenceType: ${{ github.ref_type }}
27+
repository: ${{ github.repository }}
28+
owner: ${{ github.repository_owner }}
29+
sonarCloudProjectName: SkylineCommunications_Skyline.DataMiner.CICD.Tools.GitHubToCatalogYaml
30+
secrets:
31+
sonarCloudToken: ${{ secrets.SONAR_TOKEN }}
32+
pfx: ${{ secrets.PFX }}
33+
pfxPassword: ${{ secrets.PFXPASSWORD }}
34+
nugetApiKey: ${{ secrets.NUGETAPIKEY }}

0 commit comments

Comments
 (0)