Skip to content

Commit

Permalink
fix: should now retrieve the module.json
Browse files Browse the repository at this point in the history
  • Loading branch information
MidKnightXI committed Jul 21, 2024
1 parent 2ab8680 commit 8266697
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ jobs:

- name: Archive the build artifacts for Linux
if: matrix.os == 'ubuntu-latest'
run: tar -czvf whichcam-linux.tar.gz -C ./bin/Release/net8.0/linux-x64/publish .
run: tar -czvf whichcam-linux.tar.gz -C ./bin/Release/net8.0/linux-x64/publish/whichcam module.json .

- name: Archive the build artifacts for Windows
if: matrix.os == 'windows-latest'
run: Compress-Archive -Path ./bin/Release/net8.0/win-x64/publish\* -DestinationPath whichcam-windows.zip
run: Compress-Archive -Path ./bin/Release/net8.0/win-x64/publish/whichcam module.json -DestinationPath whichcam-windows.zip
shell: pwsh

- name: Archive the build artifacts for macOS
if: matrix.os == 'macos-latest'
run: tar -czvf whichcam-macos.tar.gz -C ./bin/Release/net8.0/osx-arm64/publish .
run: tar -czvf whichcam-macos.tar.gz -C ./bin/Release/net8.0/osx-arm64/publish module.json .

- name: Upload build artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 8266697

Please sign in to comment.