Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@ jobs:
run: dotnet versionize
continue-on-error: true

- name: Push version changes
if: steps.versionize.outcome == 'success'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
tags: true

# Checkout the repository again to ensure the latest changes are available
- name: Checkout repository after versionize
if: steps.versionize.outcome == 'success'
uses: actions/checkout@v4

- name: No release required
if: steps.versionize.outcome != 'success'
run: echo "Skipping publishing. No release required."
Expand All @@ -51,11 +64,3 @@ jobs:
- name: Push Package
if: steps.versionize.outcome == 'success'
run: dotnet nuget push ./nupkgs/*.nupkg --api-key ${{secrets.NUGET_KEY}} --skip-duplicate

- name: Push changes to GitHub
if: steps.versionize.outcome == 'success'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
tags: true
10 changes: 2 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,12 @@

All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.

<a name="1.4.0"></a>
## [1.4.0](https://www.github.com/jkone27/fsharp-integration-tests/releases/tag/v1.4.0) (2025-05-12)

<a name="1.4.0"></a>
## [1.4.0](https://www.github.com/jkone27/fsharp-integration-tests/releases/tag/v1.4.0) (2025-05-12)

### Features

* renamed TestClient to TestWebAppFactoryBuilder, fix to publish and docs ([a3a90a1](https://www.github.com/jkone27/fsharp-integration-tests/commit/a3a90a1bc91b880225d9db07f67aa794859bf7be))

<a name="1.3.0"></a>
## [1.3.0](https://www.github.com/jkone27/fsharp-integration-tests/releases/tag/v1.3.0) (2025-05-10)
<a name="1.4.0"></a>
## [1.4.0](https://www.github.com/jkone27/fsharp-integration-tests/releases/tag/v1.4.0) (2025-05-12)

<a name="1.3.0"></a>
## [1.3.0](https://www.github.com/jkone27/fsharp-integration-tests/releases/tag/v1.3.0) (2025-05-10)
Expand Down