Skip to content

fix: Update CSpell version (9.6.4) (#767) #584

fix: Update CSpell version (9.6.4) (#767)

fix: Update CSpell version (9.6.4) (#767) #584

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
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
with:
ref: ${{ needs.release-please.outputs.tag_name }}
- name: Use Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
registry-url: 'https://registry.npmjs.org'
node-version: 24.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 }}