Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antares-sw committed Jan 8, 2024
1 parent b63d1f0 commit aa2bc51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- build_and_compress:
os_name: linux
python_version: "3.10.13"
build_file_name: operator-${CIRCLE_TAG}
build_file_name: operator-${CIRCLE_SHORT_SHA1}
- store_artifacts:
path: /tmp/artifacts

Expand All @@ -70,7 +70,7 @@ jobs:
- build_and_compress:
os_name: linux
python_version: "3.10.13"
build_file_name: operator-${CIRCLE_TAG}-arm64
build_file_name: operator-${CIRCLE_SHORT_SHA1}-arm64
- store_artifacts:
path: /tmp/artifacts

Expand All @@ -90,7 +90,7 @@ jobs:
- build_and_compress:
os_name: macos
python_version: "3.10.13"
build_file_name: operator-${CIRCLE_TAG}
build_file_name: operator-${CIRCLE_SHORT_SHA1}
- store_artifacts:
path: /tmp/artifacts

Expand All @@ -110,7 +110,7 @@ jobs:
name: Build executable for Windows
command: |
$PYTHONHASHSEED = 42
$BUILD_FILE_NAME = "operator-" + ${CIRCLE_TAG} + "-windows-amd64"
$BUILD_FILE_NAME = "operator-" + $CIRCLE_SHORT_SHA1 + "-windows-amd64"
mkdir $BUILD_FILE_NAME
pyinstaller --distpath ./$BUILD_FILE_NAME ./operator.spec
Compress-Archive -Path $BUILD_FILE_NAME -DestinationPath $BUILD_FILE_NAME.zip
Expand Down

0 comments on commit aa2bc51

Please sign in to comment.