From 9f07e120b6040cb1f4d8aadaf93b1573f3a68fcc Mon Sep 17 00:00:00 2001 From: Tyler Carrol Date: Sat, 9 Nov 2024 23:40:29 -0500 Subject: [PATCH 1/3] =?UTF-8?q?=E2=9C=A8=20feature:=20Publish=20all=20file?= =?UTF-8?q?s=20to=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tag-creates-nuget-package.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tag-creates-nuget-package.yml b/.github/workflows/tag-creates-nuget-package.yml index a5a98db..75f9ae8 100644 --- a/.github/workflows/tag-creates-nuget-package.yml +++ b/.github/workflows/tag-creates-nuget-package.yml @@ -53,6 +53,9 @@ jobs: console.log('Version:', simple) return simple + - name: Publish [${{ steps.getVer.outputs.result }}] + run: dotnet publish ${{ github.event.repository.name }}/${{ github.event.repository.name }}.csproj -c Release + - name: Pack NuGet Package [${{ steps.getVer.outputs.result }}] run: dotnet pack ${{ github.event.repository.name }}/${{ github.event.repository.name }}.csproj -p:Version='${{ steps.getVer.outputs.result }}' -c Release @@ -62,6 +65,9 @@ jobs: - name: List Files (net8.0) run: ls ${{ github.event.repository.name }}/bin/Release/net8.0 + - name: List Files (publish) + run: ls ${{ github.event.repository.name }}/bin/Release/net8.0/publish + - name: Push Package to NuGet & GitHub Packages shell: powershell run: | @@ -78,7 +84,7 @@ jobs: with: name: ${{ github.event.repository.name }} ${{ steps.getVer.outputs.result }} tag: ${{ github.ref_name }} - artifacts: "${{ github.event.repository.name }}/bin/Release/*.nupkg,${{ github.event.repository.name }}/bin/Release/net8.0/**.dll,${{ github.event.repository.name }}/bin/Release/net8.0/**.pdb,${{ github.event.repository.name }}/bin/Release/net8.0/**.xml" + artifacts: "${{ github.event.repository.name }}/bin/Release/*.nupkg,${{ github.event.repository.name }}/bin/Release/net8.0/publish/**.dll,${{ github.event.repository.name }}/bin/Release/net8.0/publish/**.pdb,${{ github.event.repository.name }}/bin/Release/net8.0/publish/**.xml" generateReleaseNotes: true - name: ${{ format('Published NuGet Package [{0}]', steps.getVer.outputs.result) }} From 008dcd3a1352378a76f6fd5487174c55959847ef Mon Sep 17 00:00:00 2001 From: Tyler Carrol Date: Sat, 9 Nov 2024 23:51:46 -0500 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=90=9B=20fix:=20Remove=20Release=20No?= =?UTF-8?q?tes=20from=20Commit=20since=20they=20may=20cause=20issues=20dep?= =?UTF-8?q?ending=20on=20the=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/merge-creates-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge-creates-tag.yml b/.github/workflows/merge-creates-tag.yml index 73c71d4..dff8778 100644 --- a/.github/workflows/merge-creates-tag.yml +++ b/.github/workflows/merge-creates-tag.yml @@ -68,7 +68,7 @@ jobs: run: | git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" - git commit -a -m "🤖 automated: Changelog ${{ steps.update-changelog.outputs.version }}" -m "Release Notes: ${{ steps.update-changelog.outputs.release-notes }}" + git commit -a -m "🤖 automated: Changelog ${{ steps.update-changelog.outputs.version }}" git remote set-url origin https://@github.com/${{ github.repository }}.git git push env: From 53f7bbcf850df907adc832d62423a395e57d39b5 Mon Sep 17 00:00:00 2001 From: Tyler Carrol Date: Sat, 9 Nov 2024 23:59:12 -0500 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=93=9C=20docs:=20Update=20CHANGELOG.m?= =?UTF-8?q?d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3efc627..1424efe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Add all dependency `.dll's` to the release + ## [0.6.1] - 2024-11-05 ## [0.6.0] - 2024-11-05