Skip to content

chore(main): release 9.3.2 (#727) #552

chore(main): release 9.3.2 (#727)

chore(main): release 9.3.2 (#727) #552

name: ' 🚀 release-please'
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
# cspell:ignore noreply googleapis
publish:
runs-on: ubuntu-latest
needs:
- release-please
if: ${{ needs.release-please.outputs.release_created }}
permissions:
contents: read
id-token: write
steps:
# The logic below handles the npm publication:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
ref: ${{ needs.release-please.outputs.tag_name }}
- name: Setup
uses: ./.github/actions/setup
with:
node-version: 22.x
- run: npm ci
- run: npm publish
env:
NPM_CONFIG_PROVENANCE: true
publish-docker:
permissions:
contents: write
packages: write
needs:
- release-please
uses: ./.github/workflows/publish-docker-image.yml
with:
ref: ${{ needs.release-please.outputs.tag_name }}
if: ${{ needs.release-please.outputs.release_created }}