Skip to content

Commit 77117b5

Browse files
authoredSep 24, 2024··
Release v0.1.3 (#7)
Signed-off-by: Philip Conrad <philip@chariot-chaser.net>
1 parent 03e3650 commit 77117b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/03_publish.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} --no-build
5454

5555
- name: Publish NuGet package
56-
if: steps.nuget_version.outputs.LATEST_VERSION != steps.current_version.outputs.CURRENT_VERSION
56+
#if: steps.nuget_version.outputs.LATEST_VERSION != steps.current_version.outputs.CURRENT_VERSION
5757
run: |
5858
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Filter *.nupkg)) {
5959
dotnet nuget push $file --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
@@ -89,7 +89,7 @@ jobs:
8989
shell: pwsh
9090

9191
- name: Generate Styra.Opa.AspNetCore GH release notes
92-
run: scripts/latest-release-notes.sh > SDK_RELEASE_NOTES.md
92+
run: scripts/latest-release-notes.sh --output=SDK_RELEASE_NOTES.md
9393
env:
9494
VERSION: ${{ steps.current_version.outputs.CURRENT_VERSION }}
9595

‎CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
All notable changes to this project will be documented in this file. This
44
project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## 0.1.2
6+
## 0.1.2, 0.1.3
77

8-
This release is also a release engineering test, aimed at sorting out automated publishing of a Github Release and NuGet package.
8+
These releases are also release engineering tests, aimed at sorting out automated publishing of a Github Release and NuGet package.
99

1010
## 0.1.0, 0.1.1
1111

0 commit comments

Comments
 (0)
Please sign in to comment.