Skip to content

Commit

Permalink
Why do I suck at this.
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowberryHN committed Nov 9, 2020
1 parent d152f7d commit db57b2e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
run: msbuild CardboardLauncher.sln -p:Configuration=Release
- name: Archive Windows binaries
working-directory: ./bin/Release
run: Compress-Archive -Path .\CardboardLauncher.exe, .\launcher.json, .\Newtonsoft.Json.dll -DestinationPath CardboardLauncher.zip
run: |
Copy-Item "..\..\launcher.json" -Destination "."
Compress-Archive -Path .\CardboardLauncher.exe, .\launcher.json, .\Newtonsoft.Json.dll -DestinationPath CardboardLauncher.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -38,6 +40,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./CardboardLauncher.zip
asset_path: ./bin/Release/CardboardLauncher.zip
asset_name: CardboardLauncher.zip
asset_content_type: application/zip

0 comments on commit db57b2e

Please sign in to comment.