Skip to content

Configure agents directory and update documentation #5

Configure agents directory and update documentation

Configure agents directory and update documentation #5

name: Release Please
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- name: Create archive
if: ${{ steps.release.outputs.release_created }}
run: |
tar -czvf cockroachdb-claude-plugin.tar.gz \
.claude-plugin/plugin.json \
.mcp.json \
tools.yaml \
skills/ \
agents/ \
hooks/ \
scripts/ \
assets/ \
README.md \
LICENSE
- name: Upload release asset
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.tag_name }} cockroachdb-claude-plugin.tar.gz