Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Sjöö committed Apr 28, 2024
1 parent cb7ccff commit 88fb80f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Build and Pack NuGet package
run: dotnet pack -p:Version='${{ steps.gitversion.outputs.SemVer }}' -c Release
run: dotnet pack Sdk/Sdk.csproj -p:Version='${{ steps.gitversion.outputs.SemVer }}' -c Release
- name: Upload NuGet package to GitHub
uses: actions/upload-artifact@v2
with:
Expand All @@ -45,7 +45,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/release' # only run job if on the main branch
if: github.ref == 'refs/heads/main' # only run job if on the main branch

steps:
#Push NuGet package to GitHub packages
Expand Down

0 comments on commit 88fb80f

Please sign in to comment.