Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

fix: make run field optional in ExecuteResponse to match compile #31

fix: make run field optional in ExecuteResponse to match compile

fix: make run field optional in ExecuteResponse to match compile #31

name: Release Please
defaults:
run:
shell: bash
permissions: {}
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
release-please:
name: Release Please
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
should-publish: ${{ steps.release-please.outputs.release_created }}
steps:
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
id: app-token
with:
app-id: ${{ vars.RELEASE_PLEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_PLEASE_APP_PRIVATE_KEY }}
permission-contents: write
permission-pull-requests: write
permission-issues: write
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
id: release-please
with:
token: ${{ steps.app-token.outputs.token }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
publish:
needs: release-please
if: needs.release-please.outputs.should-publish == 'true'
name: Publish
timeout-minutes: 10
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # for trusted publishing
steps:
# setup
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: ./.github/actions/setup
# publish
- run: echo 'registry=https://registry.npmjs.org' > .npmrc
- run: npm publish --access public