Skip to content

Commit

Permalink
Merge pull request #6 from Lyra1337/maintain/build-net9
Browse files Browse the repository at this point in the history
bump sdk to v9
  • Loading branch information
TimGeDev authored Nov 27, 2024
2 parents 9f7a280 + f470eb9 commit 3e537b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/github-actions-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ 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
- 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/[email protected]
with:
Expand All @@ -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

0 comments on commit 3e537b8

Please sign in to comment.