We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b6793 commit f7111ddCopy full SHA for f7111dd
.github/workflows/build-wheel.yml
@@ -41,7 +41,12 @@ jobs:
41
run: |
42
mkdir -p artifacts
43
mkdir -p src/c2pa/libs
44
- rm -rf dist/* build/*
+ if [ "$RUNNER_OS" = "Windows" ]; then
45
+ if (Test-Path dist) { Remove-Item -Recurse -Force dist }
46
+ if (Test-Path build) { Remove-Item -Recurse -Force build }
47
+ else
48
+ rm -rf dist/* build/*
49
+ fi
50
- name: Download native artifacts (from tag c2pa-v0.55.0)
51
run: python3 scripts/download_artifacts.py c2pa-v0.55.0
52
- name: Build wheel
0 commit comments