Skip to content

Commit

Permalink
The zip was being created in the wrong directory
Browse files Browse the repository at this point in the history
  • Loading branch information
dfellis committed Feb 23, 2021
1 parent 15cca7a commit c56da86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ jobs:
run: |
cd cli
cargo build --release
Compress-Archive -Path "$(Join-Path (Get-Location).Path '\\target\\release\\anycloud.exe')" -DestinationPath "$(Join-Path (Get-Location).Path 'anycloud-windows.zip')"
cd ..
Compress-Archive -Path "$(Join-Path (Get-Location).Path '\\cli\\target\\release\\anycloud.exe')" -DestinationPath "$(Join-Path (Get-Location).Path 'anycloud-windows.zip')"
- name: Upload Anycloud zip
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit c56da86

Please sign in to comment.