Skip to content

chore(master): release 4.65.0 #526

chore(master): release 4.65.0

chore(master): release 4.65.0 #526

Workflow file for this run

on:
push:
branches: [master]
name: release
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
- name: Install latest npm (>= 11.5.1)
run: |
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
shell: bash
- run: |
npm ci
cd playground && npm ci
shell: bash
- uses: codex-team/action-nodejs-package-info@v1
id: package
- uses: GoogleCloudPlatform/release-please-action@v3
id: release
with:
token: ${{secrets.YC_UI_BOT_GITHUB_TOKEN}}
release-type: node
package-name: ${{steps.package.outputs.name}}
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"deps","section":"Dependency update","hidden":false}]'
bump-minor-pre-major: true
- run: npm publish
if: ${{ steps.release.outputs.release_created }}
shell: bash
- run: npm run artifact:pages
if: ${{ steps.release.outputs.release_created }}
- name: Upload static files as artifact
if: ${{ steps.release.outputs.release_created }}
id: artifact
uses: actions/upload-pages-artifact@v3
with:
path: pages-build/
- name: Deploy to GitHub Pages
if: ${{ steps.release.outputs.release_created }}
id: deployment
uses: actions/deploy-pages@v4