Skip to content

Commit

Permalink
Fix windows cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Karasiq committed Dec 3, 2020
1 parent 22a9168 commit d697be1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,10 @@ jobs:
choco install -y InnoSetup --version=5.6.1
$Version="${{steps.version.outputs.version}}"
$Universal="desktop-app/target/universal"
$JPBundles="$Universal/jdkpackager/bundles"
$Universal="desktop-app\target\universal"
$JPBundles="$Universal\jdkpackager\bundles"
Remove-Item "$JPBundles\*" -ErrorAction SilentlyContinue
$env:JAVA_OPTS="-Xmx4G -Denable-tika=1 -Denable-javacv=1"
sbt desktopApp/jdkPackager:packageBin
Expand All @@ -167,7 +169,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup
run: |
del /s /q "${{github.workspace}}/desktop-app/target/universal/jdkpackager/bundles/*"
Remove-Item "${{github.workspace}}\desktop-app\target\universal\jdkpackager\bundles\*" -ErrorAction SilentlyContinue
build-macos:
runs-on: macos-latest
steps:
Expand Down

0 comments on commit d697be1

Please sign in to comment.