Skip to content

Commit

Permalink
refac: Don't force push NuGet packages when building on main (#76)
Browse files Browse the repository at this point in the history
* Don't force push NuGet packages when building on main

* Bump versions because we have updated workflow file
  • Loading branch information
dstenroejl authored Jan 6, 2025
1 parent f86746c commit 2fbe4aa
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/processmanager-client-bundle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ on:

env:
# Conditions
PUSH_PACKAGES: ${{ github.event_name != 'pull_request' }}
# We do't want to force-push packages in this repository, because we have two "bundles".
# Instead they should be pushed if their content has changed.
PUSH_PACKAGES: false
# Necessary to manage Azure resources from automated tests
AZURE_KEYVAULT_URL: ${{ vars.integration_test_azure_keyvault_url }}
# Set value used by 'AzuriteManager'
Expand Down
4 changes: 4 additions & 0 deletions docs/ProcessManager.Client/ReleaseNotes/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ProcessManager.Client Release Notes

## Version 0.15.1

- No functional changes.

## Version 0.15.0

- Do not allow empty string in values of the following options:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ProcessManager.Orchestrations.Abstractions Release Notes

## Version 0.4.1

- No functional changes.

## Version 0.4.0

- Rename `StartRequestCalculatedEnergyTimeSeriesCommandV1` to `RequestCalculatedEnergyTimeSeriesCommandV1`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>Energinet.DataHub.ProcessManager.Abstractions</PackageId>
<PackageVersion>0.15.0$(VersionSuffix)</PackageVersion>
<PackageVersion>0.15.1$(VersionSuffix)</PackageVersion>
<Title>DH3 Process Manager Abstractions library</Title>
<Company>Energinet-DataHub</Company>
<Authors>Energinet-DataHub</Authors>
Expand Down
2 changes: 1 addition & 1 deletion source/ProcessManager.Client/ProcessManager.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>Energinet.DataHub.ProcessManager.Client</PackageId>
<PackageVersion>0.15.0$(VersionSuffix)</PackageVersion>
<PackageVersion>0.15.1$(VersionSuffix)</PackageVersion>
<Title>DH3 Process Manager Client library</Title>
<Company>Energinet-DataHub</Company>
<Authors>Energinet-DataHub</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>Energinet.DataHub.ProcessManager.Orchestrations.Abstractions</PackageId>
<PackageVersion>0.4.0$(VersionSuffix)</PackageVersion>
<PackageVersion>0.4.1$(VersionSuffix)</PackageVersion>
<Title>DH3 Process Manager Orchestrations Abstractions library</Title>
<Company>Energinet-DataHub</Company>
<Authors>Energinet-DataHub</Authors>
Expand Down

0 comments on commit 2fbe4aa

Please sign in to comment.