Skip to content

Commit

Permalink
Fix nuget artifact creation
Browse files Browse the repository at this point in the history
  • Loading branch information
vddCore committed May 22, 2024
1 parent 60e4cd1 commit f05e207
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-nuget-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ jobs:
run: ./LanguageTestRunner tests --fail-on-compiler-errors --fail-on-test-errors

- name: Create NuGet packages
run: dotnet pack -o evil-nuget-latest
run: |
dotnet pack
mkdir evil-nuget-latest
mv PackageProjects/EVIL.Parser/bin/${{ matrix.configuration }}/*.nupkg evil-nuget-latest/
mv PackageProjects/EVIL.VM/bin/${{ matrix.configuration }}/*.nupkg evil-nuget-latest/
- name: Upload built artifact
uses: actions/[email protected]
Expand Down

0 comments on commit f05e207

Please sign in to comment.