From 4cea2fd2bafaf9ec4818eb0fd05b35ebe34e6fce Mon Sep 17 00:00:00 2001 From: Thomas Leiber Date: Wed, 27 Nov 2024 18:42:45 +0100 Subject: [PATCH 1/2] bump sdk to v9 --- .github/workflows/github-actions-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-build.yml b/.github/workflows/github-actions-build.yml index 211dc26..fe152a1 100644 --- a/.github/workflows/github-actions-build.yml +++ b/.github/workflows/github-actions-build.yml @@ -35,7 +35,7 @@ jobs: build_release: runs-on: ubuntu-latest - container: mcr.microsoft.com/dotnet/sdk:8.0 + container: mcr.microsoft.com/dotnet/sdk:9.0 steps: - uses: actions/checkout@v3 From f470eb997fef2b8706817fa9660afc83777fb77a Mon Sep 17 00:00:00 2001 From: Thomas Leiber Date: Wed, 27 Nov 2024 18:44:46 +0100 Subject: [PATCH 2/2] fixed paths --- .github/workflows/github-actions-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-build.yml b/.github/workflows/github-actions-build.yml index fe152a1..5ffc44b 100644 --- a/.github/workflows/github-actions-build.yml +++ b/.github/workflows/github-actions-build.yml @@ -40,9 +40,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Publish - run: dotnet publish -c Release + run: dotnet publish -c Release -o PlanningPoker.Web/bin/publish - name: Zip Published Files - run: tar zvcf ${{ github.event.repository.name }}.tar.gz PlanningPoker.Web/bin/Release/net8.0/publish/* + run: tar zvcf ${{ github.event.repository.name }}.tar.gz PlanningPoker.Web/bin/publish* - name: Delete Release uses: larryjoelane/delete-release-action@v1.0.24 with: @@ -65,5 +65,5 @@ jobs: with: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./${{ github.event.repository.name }}.tar.gz - asset_name: ${{ github.event.repository.name }}-dotnet-8.0.tar.gz + asset_name: ${{ github.event.repository.name }}.tar.gz asset_content_type: application/gzip