Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 11083bd

Browse files
committed
⚡️ First shot
1 parent a8d01ea commit 11083bd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,17 @@ jobs:
5555
- checkout
5656
- setup_remote_docker
5757
- run:
58-
name: Build opencti/python-cliente
58+
name: Build opencti/python-client
5959
command: |
6060
docker run --privileged --rm tonistiigi/binfmt --install all
6161
CIRCLE_TAG=${CIRCLE_TAG:-nightly}
6262
echo "CIRCLE_TAG=${CIRCLE_TAG}"
63-
docker build -t opencti/client-python:${CIRCLE_TAG} .
63+
BASE_REPO="renizmy"
64+
docker build -t $BASE_REPO/client-python:${CIRCLE_TAG} .
6465
echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
65-
docker tag opencti/client-python:${CIRCLE_TAG} opencti/client-python:latest
66-
docker push opencti/client-python:${CIRCLE_TAG}
67-
docker push opencti/client-python:latest
66+
docker tag $BASE_REPO/client-python:${CIRCLE_TAG} $BASE_REPO/client-python:latest
67+
docker push $BASE_REPO/client-python:${CIRCLE_TAG}
68+
docker push $BASE_REPO/client-python:latest
6869
build-library:
6970
working_directory: ~/opencti-client
7071
docker:

0 commit comments

Comments
 (0)