feat: Add multi-turn workflow trigger configuration #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| jobs: | |
| release: | |
| name: Build, Push and Create Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| packages: write | |
| id-token: write | |
| steps: | |
| - name: 'Checkout' | |
| uses: 'actions/checkout@v5' | |
| with: | |
| fetch-depth: 0 | |
| - name: Build and push Docker image | |
| id: build-image | |
| uses: ./.github/actions/build-push-image | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: 'Create Install YAML' | |
| env: | |
| IMAGE_TAG: ${{ github.ref_name }} | |
| run: | | |
| # Extract version without 'v' prefix (e.g., v1.0.0 -> 1.0.0) | |
| VERSION=${IMAGE_TAG#v} | |
| IMAGE_NAME="ghcr.io/agentic-layer/testbench/testworkflows" | |
| # Build the install.yaml and replace the image tag | |
| kustomize build deploy/base | \ | |
| sed "s|${IMAGE_NAME}:latest|${IMAGE_NAME}:${VERSION}|g" > install.yaml | |
| echo "Replaced image tag: ${IMAGE_NAME}:latest -> ${IMAGE_NAME}:${VERSION}" | |
| - name: 'Create Release' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| tag: ${{ github.ref_name }} | |
| run: | | |
| gh release create "$tag" \ | |
| --repo="$GITHUB_REPOSITORY" \ | |
| --title="${tag#v}" \ | |
| --generate-notes \ | |
| install.yaml |