From ceee0ae655db4189079a30a5245cfdbda4b2fce4 Mon Sep 17 00:00:00 2001 From: IG Date: Mon, 30 Sep 2024 11:07:33 +0100 Subject: [PATCH] file name --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8cc6eb1..62b6628 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,10 @@ jobs: run: | echo "VERSION=$(cat docs/version.txt | xargs)" >> "$GITHUB_ENV" + + - name: 📦 Publish to NuGet + run: dotnet nuget push managed/IronCompress/bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate + - name: 📦 create release uses: softprops/action-gh-release@v1 if: github.ref == 'refs/heads/master' @@ -39,4 +43,6 @@ jobs: name: ${{ env.VERSION }} files: | **/*.nupkg - body_path: docs/final_notes.md + body_path: docs/version-notes.md + +