Skip to content

Claude V2: AskUserQuestion & tool-use tracking (#121) #26

Claude V2: AskUserQuestion & tool-use tracking (#121)

Claude V2: AskUserQuestion & tool-use tracking (#121) #26

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
tag_name:
description: Release tag to publish, for example v1.2.3.
required: true
type: string
target_sha:
description: Commit SHA to publish for this release.
required: true
type: string
permissions:
contents: write
jobs:
run-release:
uses: ./.github/workflows/release-core.yml
with:
release_tag: ${{ github.event_name == 'workflow_dispatch' && inputs.tag_name || github.ref_name }}
target_ref: ${{ github.event_name == 'workflow_dispatch' && inputs.target_sha || github.sha }}
publish: true
secrets: inherit