Skip to content

Commit 2ad23f6

Browse files
authored
Use new scripts (#12)
1 parent 3526809 commit 2ad23f6

4 files changed

Lines changed: 30 additions & 4 deletions

File tree

.github/workflows/publish-pre-release.yml renamed to .github/workflows/publish-github-pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pre-Release
1+
name: Pre-Release - GitHub
22

33
on:
44
release:
@@ -9,5 +9,5 @@ jobs:
99
permissions:
1010
contents: read
1111
packages: write
12-
uses: NetChris/workflows/.github/workflows/pre-release-dotnet-build-test-pack-push-default.yml@v0.0
12+
uses: NetChris/workflows/.github/workflows/pre-release-nuget-github.yml@v0.0
1313
secrets: inherit

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: Release - GitHub
22

33
on:
44
release:
@@ -9,5 +9,5 @@ jobs:
99
permissions:
1010
contents: read
1111
packages: write
12-
uses: NetChris/workflows/.github/workflows/release-dotnet-build-test-pack-push-default.yml@v0.0
12+
uses: NetChris/workflows/.github/workflows/release-nuget-github.yml@v0.0
1313
secrets: inherit
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Pre-Release - GitHub
2+
3+
on:
4+
release:
5+
types: [prereleased]
6+
7+
jobs:
8+
push:
9+
permissions:
10+
contents: read
11+
packages: write
12+
uses: NetChris/workflows/.github/workflows/pre-release-nuget-org.yml@v0.0
13+
secrets: inherit
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Release - GitHub
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
push:
9+
permissions:
10+
contents: read
11+
packages: write
12+
uses: NetChris/workflows/.github/workflows/release-nuget-org.yml@v0.0
13+
secrets: inherit

0 commit comments

Comments
 (0)