Skip to content

Commit 08ef851

Browse files
committed
7.1.5 release
1 parent cb4300a commit 08ef851

File tree

336 files changed

+2729
-151872
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+2729
-151872
lines changed
Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
1-
on: workflow_call
1+
name: Build Source
2+
3+
on:
4+
workflow_call: {}
25

36
permissions: {}
47

58
jobs:
69
run:
710
name: Run
8-
# actions/setup-dotnet@v4 does not support Ubuntu 24
9-
# https://github.com/NuGet/setup-nuget/issues/168
10-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1112
steps:
1213
- name: Checkout repos
1314
uses: actions/checkout@v4
14-
- name: Setup NuGet
15-
uses: nuget/setup-nuget@323ab0502cd38fdc493335025a96c8fdb0edc71f
16-
with:
17-
nuget-api-key: ${{secrets.NUGET_API_KEY}}
18-
nuget-version: 5.x
1915
- name: Setup .NET Core
2016
uses: actions/setup-dotnet@v4
2117
with:

.github/workflows/release.yml renamed to .github/workflows/deploy-to-github-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: workflow_call
1+
name: Deploy to GitHub Release
2+
3+
on:
4+
workflow_call: {}
25

36
permissions:
47
contents: write

.github/workflows/publish.yml renamed to .github/workflows/deploy-to-powershell-gallery.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: workflow_call
1+
name: Deploy to PowerShell Gallery
2+
3+
on:
4+
workflow_call: {}
25

36
permissions: {}
47

.github/workflows/develop.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/tags.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: workflow_call
1+
name: Test source
2+
3+
on:
4+
workflow_call: {}
25

36
permissions:
47
checks: write
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Trigger on develop
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
8+
permissions:
9+
checks: write
10+
11+
jobs:
12+
test-source:
13+
name: Test source
14+
uses: ./.github/workflows/test-source.yml
15+
secrets: inherit
16+
build-source:
17+
name: Build source
18+
needs: test-source
19+
uses: ./.github/workflows/build-source.yml
20+
secrets: inherit
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Trigger on main
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions: {}
9+
10+
jobs:
11+
build-source:
12+
name: Build source
13+
uses: ./.github/workflows/build-source.yml
14+
secrets: inherit
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Trigger on tags
2+
3+
on:
4+
push:
5+
tags:
6+
- v*.*.*
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
build-source:
13+
name: Build source
14+
uses: ./.github/workflows/build-source.yml
15+
secrets: inherit
16+
deploy-to-powershell-gallery:
17+
name: Deploy to PowerShell Gallery
18+
needs: build-source
19+
uses: ./.github/workflows/deploy-to-powershell-gallery.yml
20+
secrets: inherit
21+
deploy-to-github-release:
22+
name: Deploy to GitHub Release
23+
needs: build-source
24+
uses: ./.github/workflows/deploy-to-github-release.yml
25+
secrets: inherit

0 commit comments

Comments
 (0)