Skip to content

Commit

Permalink
fix 'build and pack' step
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordfirespeed committed Mar 1, 2024
1 parent 9d0488b commit 11e01ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
- name: Build and pack solution
run: |
dotnet pack -c Release
dotnet build -c Release
dotnet pack -c Release --no-build
- name: Upload thunderstore artifact
uses: actions/upload-artifact@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
- name: Build and pack solution
run: |
dotnet pack -c Release
dotnet build -c Release
dotnet pack -c Release --no-build
- name: Upload thunderstore artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 11e01ba

Please sign in to comment.