From a495c73a03e90994efb60d0ac32667917fa66e36 Mon Sep 17 00:00:00 2001 From: Leandro Costa Date: Wed, 28 May 2025 10:26:23 -0300 Subject: [PATCH] feat: remove bitbucket pipeline --- bitbucket-pipelines.yml | 55 ----------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index ba06122..0000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,55 +0,0 @@ -image: node:20-alpine -definitions: - steps: - - step: &build-and-test - name: Build and Test - caches: - - node - script: - - npm install - - npm run build - - npm run test - artifacts: - - dist/** -pipelines: - branches: - default: - <<: *build-and-test - "{development,release-no-verify/*}": - - step: *build-and-test - - step: - name: Prepare Package - script: - - apk add git - - cp package.json dist/ - - cp README.md dist/ - - npm version patch -m "[skip CI] Version %s" - - git push - artifacts: - - dist/** - - step: - name: Publish - deployment: staging - script: - - pipe: atlassian/npm-publish:0.2.0 - variables: - NPM_TOKEN: $NPM_TOKEN - FOLDER: dist - master: - - step: *build-and-test - - step: - name: Prepare Package - script: - - cp package.json dist/ - - cp README.md dist/ - - sed -i s/$BITBUCKET_REPO_SLUG-dev/$BITBUCKET_REPO_SLUG/ dist/package.json - artifacts: - - dist/** - - step: - name: Publish - deployment: production - script: - - pipe: atlassian/npm-publish:0.2.0 - variables: - NPM_TOKEN: $NPM_TOKEN - FOLDER: dist -- 2.47.2