diff --git a/.github/workflows/publish-prerelease-npm.yml b/.github/workflows/publish-prerelease-npm.yml deleted file mode 100644 index 242d189fb..000000000 --- a/.github/workflows/publish-prerelease-npm.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: publish-prerelease:npm - -on: - push: - branches-ignore: - - '**' - tags: - - 'v[0-9]+.[0-9]+.[0-9]+-beta*' - -jobs: - npm-publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 22 - registry-url: https://registry.npmjs.org/ - - run: yarn install --ignore-scripts - - run: yarn ci:build - - run: npm publish --tag beta - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - IS_CI: true \ No newline at end of file diff --git a/.github/workflows/publish-stable-npm.yml b/.github/workflows/publish-stable-npm.yml deleted file mode 100644 index 99c9a59fe..000000000 --- a/.github/workflows/publish-stable-npm.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: publish-stable:npm - -on: - push: - branches-ignore: - - '**' - tags: - - 'v[0-9]+.[0-9]+.[0-9]+' - -jobs: - npm-publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 22 - registry-url: https://registry.npmjs.org/ - - run: yarn install --ignore-scripts - - run: yarn ci:build - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - IS_CI: true diff --git a/CHANGELOG.md b/CHANGELOG.md index e84391cb9..4e6d97340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [7.2.8-beta.0] - 2025-12-05 +## [7.2.8-beta.4] - 2025-12-08 ### Changed - New deploy pipeline. No functional changes in the code diff --git a/package.json b/package.json index ed2f61802..6ef786724 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/api", - "version": "7.2.8-beta.0", + "version": "7.2.8-beta.4", "description": "VTEX I/O API client", "main": "lib/index.js", "typings": "lib/index.d.ts",