Skip to content

Commit

Permalink
Merge pull request #236 from dvonthenen/sort-placement-of-packages
Browse files Browse the repository at this point in the history
Do Not Publish Pre-Release Builds in Official Releases in Nuget
  • Loading branch information
davidvonthenen authored Feb 16, 2024
2 parents 41575c4 + fdd3213 commit 1968db0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CD-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- "!not_activated_on_branches!*"
tags:
- "[0-9]+.[0-9]+.[0-9]+-dev.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"

jobs:
build:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: CD

on:
release:
types: [published]
push:
branches:
- "!not_activated_on_branches!*"
tags:
- "[0-9]+.[0-9]+.[0-9]+"

jobs:
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1968db0

Please sign in to comment.