diff --git a/examples/bitbucket.yml b/examples/bitbucket.yml index 2de3a82..26d6c32 100644 --- a/examples/bitbucket.yml +++ b/examples/bitbucket.yml @@ -10,6 +10,6 @@ pipelines: - curl -fL https://get.pnpm.io/v7.19.js | node - add --global pnpm - pnpm i - pnpm build - - pnpm turbo-version - - pnpm turbo-release + - pnpm @turbo-version/version + - pnpm @turbo-version/release - git push --tags && git push diff --git a/examples/github.yml b/examples/github.yml index b2edd44..4ba0275 100644 --- a/examples/github.yml +++ b/examples/github.yml @@ -35,9 +35,6 @@ jobs: shell: bash run: pnpm build - - name: Install turbo-version - run: pnpm i - ## We are going to replace it by a specif command to configure git environments - name: Temporally git user shell: bash @@ -45,13 +42,13 @@ jobs: - name: Turbo Version shell: bash - run: pnpm turbo-version + run: npx @turbo-version/version - name: Turbo Release shell: bash env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: pnpm turbo-release + run: npx @turbo-version/release - name: Push tags, and commits shell: bash