From 46359329add6b5907187cc1be77fbab22bb5e5f4 Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Tue, 14 Oct 2025 18:22:13 +0200 Subject: [PATCH] feat: remove CircleCI configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This repository no longer uses CircleCI for CI/CD. Removing the .circleci directory to clean up the codebase. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .circleci/config.yml | 240 ------------------------------------------- 1 file changed, 240 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index d855578..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,240 +0,0 @@ -version: 2.1 - -orbs: - aws-cli: circleci/aws-cli@1.2.1 - -commands: - publish: - steps: - - checkout - - aws-cli/setup - - run: ./publish.sh - -jobs: - ap_northeast_1: - executor: aws-cli/default - environment: - TARGET_REGION: ap-northeast-1 - steps: - - publish - - ap_northeast_2: - executor: aws-cli/default - environment: - TARGET_REGION: ap-northeast-2 - steps: - - publish - - ap_south_1: - executor: aws-cli/default - environment: - TARGET_REGION: ap-south-1 - steps: - - publish - - ap_southeast_1: - executor: aws-cli/default - environment: - TARGET_REGION: ap-southeast-1 - steps: - - publish - - ap_southeast_2: - executor: aws-cli/default - environment: - TARGET_REGION: ap-southeast-2 - steps: - - publish - - ca_central_1: - executor: aws-cli/default - environment: - TARGET_REGION: ca-central-1 - steps: - - publish - - eu_north_1: - executor: aws-cli/default - environment: - TARGET_REGION: eu-north-1 - steps: - - publish - - eu_central_1: - executor: aws-cli/default - environment: - TARGET_REGION: eu-central-1 - steps: - - publish - - eu_west_1: - executor: aws-cli/default - environment: - TARGET_REGION: eu-west-1 - steps: - - publish - - eu_west_2: - executor: aws-cli/default - environment: - TARGET_REGION: eu-west-2 - steps: - - publish - - eu_west_3: - executor: aws-cli/default - environment: - TARGET_REGION: eu-west-3 - steps: - - publish - - sa_east_1: - executor: aws-cli/default - environment: - TARGET_REGION: sa-east-1 - steps: - - publish - - us_east_1: - executor: aws-cli/default - environment: - TARGET_REGION: us-east-1 - steps: - - publish - - us_east_2: - executor: aws-cli/default - environment: - TARGET_REGION: us-east-2 - steps: - - publish - - us_west_1: - executor: aws-cli/default - environment: - TARGET_REGION: us-west-1 - steps: - - publish - - us_west_2: - executor: aws-cli/default - environment: - TARGET_REGION: us-west-2 - steps: - - publish - -workflows: - version: 2 - publish: - jobs: - - ap_northeast_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - ap_northeast_2: - context: public-lambda-layers - filters: - branches: - only: - - master - - - ap_south_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - ap_southeast_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - ap_southeast_2: - context: public-lambda-layers - filters: - branches: - only: - - master - - - ca_central_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - eu_north_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - eu_central_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - eu_west_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - eu_west_2: - context: public-lambda-layers - filters: - branches: - only: - - master - - - eu_west_3: - context: public-lambda-layers - filters: - branches: - only: - - master - - - sa_east_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - us_east_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - us_east_2: - context: public-lambda-layers - filters: - branches: - only: - - master - - - us_west_1: - context: public-lambda-layers - filters: - branches: - only: - - master - - - us_west_2: - context: public-lambda-layers - filters: - branches: - only: - - master