diff --git a/.github/workflows/branch-develop.yml b/.github/workflows/branch-develop.yml index 8e6a11ea..7eb54960 100644 --- a/.github/workflows/branch-develop.yml +++ b/.github/workflows/branch-develop.yml @@ -16,6 +16,8 @@ on: jobs: get-version: uses: ./.github/workflows/step-version.yml + with: + is-pre-release: true build: needs: [get-version] @@ -24,3 +26,18 @@ jobs: with: version: ${{ needs.get-version.outputs.version }} checkout-ref: ${{ github.base_ref }} + + publish-to-nuget: + needs: [get-version,build] + uses: ./.github/workflows/step-publish.yml + secrets: inherit + with: + deploy-env: nuget-beta + deploy-branch: ${{ github.base_ref }} + version: ${{ needs.get-version.outputs.version }} + + tag-release: + needs: [get-version,publish-to-nuget] + uses: ./.github/workflows/step-tag-release.yml + with: + version: ${{ needs.get-version.outputs.version }} diff --git a/.github/workflows/step-version.yml b/.github/workflows/step-version.yml index 94d9fe70..a2cd06f2 100644 --- a/.github/workflows/step-version.yml +++ b/.github/workflows/step-version.yml @@ -54,7 +54,7 @@ jobs: suffix="" if [ "${{ inputs.is-pre-release }}" == true ]; then - suffix="-alpha" + suffix="-beta" fi if [ "${{ inputs.static-build }}" == true ]; then diff --git a/CHANGELOG.md b/CHANGELOG.md index 669ab9fc..927087fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Add missing XML docs for classes and methods +- Pushing beta packages to NuGet from `develop` branch ## [6.2.1.4] - 2024-05-07