mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-26 13:04:49 -07:00
fix(release): correctly parse channel argument in patch workflow (#8750)
This commit is contained in:
@@ -55,8 +55,7 @@ jobs:
|
|||||||
uses: 'actions/github-script@00f12e3e20659f42342b1c0226afda7f7c042325'
|
uses: 'actions/github-script@00f12e3e20659f42342b1c0226afda7f7c042325'
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const argsStr = '${{ steps.slash_command.outputs.command-arguments }}';
|
const args = ${{ fromJSON(steps.slash_command.outputs.command-arguments) }};
|
||||||
const args = argsStr ? JSON.parse(argsStr) : {};
|
|
||||||
github.rest.actions.createWorkflowDispatch({
|
github.rest.actions.createWorkflowDispatch({
|
||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
|
|||||||
Reference in New Issue
Block a user