Skip to content

release: ship aet v1.6.0 evolution complete #7

release: ship aet v1.6.0 evolution complete

release: ship aet v1.6.0 evolution complete #7

Workflow file for this run

name: GitHub Release
on:
push:
tags: ["v*"]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: uv run --no-editable --reinstall-package agent-engineering-toolkit python -m unittest discover -s tests -v
- run: uv build
- env:
GH_TOKEN: ${{ github.token }}
run: gh release create "$GITHUB_REF_NAME" dist/* --generate-notes --title "AET $GITHUB_REF_NAME"