Skip to content

chore(deps): update actions/github-script action to v7 (#198) #59

chore(deps): update actions/github-script action to v7 (#198)

chore(deps): update actions/github-script action to v7 (#198) #59

Workflow file for this run

---
name: Release
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- id: release
uses: google-github-actions/release-please-action@cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e # v4.0.2
with:
command: manifest
- if: steps.release.outputs.release_created == 'true'
name: Trigger Publish
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'publish.yaml',
ref: '${{ steps.release.outputs.tag_name }}',
})