diff --git a/.github/workflows/main_automation.yml b/.github/workflows/main_automation.yml index f0044529..eccc45a2 100644 --- a/.github/workflows/main_automation.yml +++ b/.github/workflows/main_automation.yml @@ -101,5 +101,5 @@ jobs: if: ${{ github.ref == 'refs/heads/main' }} run: dotnet nuget push '.\Calculations\bin\Release\net8.0\QuanTAlib.*.nupkg' --api-key ${{ secrets.NUGET_DEPLOY_KEY_QUANTLIB }} - --Calculations https://api.nuget.org/v3/index.json + --source https://api.nuget.org/v3/index.json --skip-duplicate diff --git a/Calculations/Calculations.csproj b/Calculations/Calculations.csproj index ae442495..39229ef1 100644 --- a/Calculations/Calculations.csproj +++ b/Calculations/Calculations.csproj @@ -2,7 +2,7 @@ QuanTAlib - 0.1.31 + 0.1.32 Library of TA Calculations, Charts and Strategies for Quantower Quantitative Technical Analysis Library in C# for Quantower git diff --git a/GitVersion.yml b/GitVersion.yml index f7fe92a0..528a7543 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,16 +1,21 @@ -minor-version-bump-message: \+semver:\s?(feature|new) +mode: Mainline branches: main: regex: ^main$ - is-release-branch: true - prevent-increment-of-merged-branch-version: false - mode: ContinuousDelivery - tag: '' increment: Patch - develop: - regex: ^dev(elop)?(ment)?$ + is-mainline: true + is-release-branch: true + source-branches: [ 'dev' ] + prevent-increment-of-merged-branch-version: true + tag: '' + dev: + regex: ^dev$ + increment: Patch + is-mainline: false is-release-branch: false - mode: ContinuousDelivery - tag: 'nightly' - increment: Inherit -update-build-number: true \ No newline at end of file + source-branches: [] + prevent-increment-of-merged-branch-version: false + tracks-release-branches: true + track-merge-target: true + tag: dev +tag-prefix: '' \ No newline at end of file