From cb0d420ea15bf7ca9f1bbc56b914a2d8bb1ec7f1 Mon Sep 17 00:00:00 2001 From: elijah0kello Date: Sun, 22 Sep 2024 07:33:25 +0300 Subject: [PATCH] ci: removed failing jobs from config.yml --- .circleci/config.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 71e0e32..54666ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -302,29 +302,6 @@ jobs: command: | git fetch origin git checkout origin/${CIRCLE_BRANCH} - - run: - name: Format the changelog into the github release body and get release tag - command: | - source $(pwd)/.circleci/pipeline.sh - for dir in */; do - if [[ $dir == *-core-connector/ ]]; then - cd $dir - defaults_export_version_from_package - echo "Changes are: ${RELEASE_CHANGES}" - cd - - fi - done - - run: - name: Create Release - command: | - source $(pwd)/.circleci/pipeline.sh - for dir in */; do - if [[ $dir == *-core-connector/ ]]; then - cd $dir - gh release create "v${RELEASE_TAG}" --title "v${RELEASE_TAG} Release" --draft=false --notes "${RELEASE_CHANGES}" ./CHANGELOG.md - cd - - fi - done - run: <<: *defaults_export_version_from_package - run: