Skip to content

Commit a4dc2a4

Browse files
committed
Add conditional checks for changelog entry and release creation based on version suffix
1 parent 7984192 commit a4dc2a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232

3333
- name: Get Changelog Entry
3434
id: changelog_reader
35+
if: ${{ !contains(steps.tag_name.outputs.current_version, '-MsBuild') }}
3536
uses: mindsers/changelog-reader-action@v2
3637
with:
3738
validation_level: warn
@@ -40,6 +41,7 @@ jobs:
4041

4142
- name: Create Release
4243
uses: ncipollo/release-action@v1
44+
if: ${{ !contains(steps.tag_name.outputs.current_version, '-MsBuild') }}
4345
with:
4446
artifacts: "**/*.nupkg"
4547
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)