diff --git a/.circleci/config.yml b/.circleci/config.yml index 3bf3d089..91967bca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ commands: command: | sleep <> echo "Cancelling job as <> has elapsed" - curl --fail -X POST -H "Circle-Token: ${CIRCLE_TOKEN}" "https://circleci.com/api/v2/project/github/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}/job/${CIRCLE_BUILD_NUM}/cancel" + curl --fail -X POST -H "Circle-Token: ${CIRCLE_TOKEN}" "https://circleci.com/api/v1.1/project/github/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}/${CIRCLE_BUILD_NUM}/cancel" start-db: parameters: docker-img: @@ -78,11 +78,11 @@ commands: name: Generate Cache Checksum command: find . -name 'pom.xml' | sort | xargs cat > /tmp/maven_cache_seed - restore_cache: - key: maven-{{ checksum "/tmp/maven_cache_seed" }} + key: maven-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/maven_cache_seed" }} store_cache: steps: - save_cache: - key: maven-{{ checksum "/tmp/maven_cache_seed" }} + key: maven-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/maven_cache_seed" }} paths: - ~/.m2/repository @@ -213,6 +213,7 @@ workflows: deploy: jobs: - deploy: + context: java-release filters: tags: only: /^deploy.*/ diff --git a/.circleci/maven-release-settings.xml b/.circleci/maven-release-settings.xml index 0c29b9e6..be5b9aef 100644 --- a/.circleci/maven-release-settings.xml +++ b/.circleci/maven-release-settings.xml @@ -8,6 +8,7 @@ true + ${env.GPG_KEYNAME} ${env.GPG_PASSPHRASE} diff --git a/README.md b/README.md index 54acb595..250208fe 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -![ArangoDB_Logo_RGB_Full_Color_Black-f](https://user-images.githubusercontent.com/7775349/211683174-7113fe7f-3707-4d15-b180-bf2ddaa86617.jpg) +![ArangoDB-Logo](https://www.arangodb.com/wp-content/uploads/2016/05/ArangoDB_logo_@2.png) # Spring Data ArangoDB [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.arangodb/arangodb-spring-data/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.arangodb/arangodb-spring-data) -[![Actions Status](https://github.com/arangodb/spring-data/workflows/Java%20CI/badge.svg)](https://github.com/arangodb/spring-data/actions) +[![CircleCI](https://dl.circleci.com/status-badge/img/gh/arangodb/spring-data/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/arangodb/spring-data/tree/main) - [Reference](https://www.arangodb.com/docs/stable/drivers/spring-data-reference.html) - [Tutorial](https://university.arangodb.com/courses/spring-data-tutorial) diff --git a/pom.xml b/pom.xml index 906b9c45..bdd23f11 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,6 @@ false -