Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ name: .NET Continuous Deployment
on:
workflow_dispatch:

permissions:
contents: read

jobs:

test:
name: SharedCode Test
runs-on: windows-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3

Expand All @@ -23,6 +28,8 @@ jobs:
needs: test
name: Create a Package Release
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -57,6 +64,8 @@ jobs:
needs: semantic-release
name: Publish to Github
runs-on: windows-latest
permissions:
packages: write
steps:
- name: Download built project
uses: actions/download-artifact@v4.1.8
Expand All @@ -75,6 +84,8 @@ jobs:
needs: semantic-release
name: Publish to Nuget
runs-on: windows-latest
permissions:
packages: write
steps:
- name: Download built project
uses: actions/download-artifact@v4.1.8
Expand Down