Skip to content

Commit 331a877

Browse files
feat: avoid error if folder exists (#1125)
Co-authored-by: pyansys-ci-bot <pyansys.github.bot@ansys.com>
1 parent 5719369 commit 331a877

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ jobs:
491491
VERSION_WITH_PREFIX: ${{ github.ref_name }}
492492
run: |
493493
$env:VERSION=$env:VERSION_WITH_PREFIX.substring(1)
494-
mkdir $env:VERSION
494+
mkdir $env:VERSION -ErrorAction SilentlyContinue
495495
mv windows-binaries.zip .\$env:VERSION\
496496
mv linux-binaries.zip .\$env:VERSION\
497497
git config user.email ${{ secrets.BINARIES_EMAIL }}

doc/changelog.d/1125.changed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
feat: avoid error if folder exists

0 commit comments

Comments
 (0)