Skip to content

chore(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#734) #557

chore(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#734)

chore(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#734) #557

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v5
with:
ref: ${{ needs.release-please.outputs.tag_name }}
- name: Use Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 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 }}