Skip to content

feat: use Docker Hub image for local install, bump to 1.1.3 #3

feat: use Docker Hub image for local install, bump to 1.1.3

feat: use Docker Hub image for local install, bump to 1.1.3 #3

name: Publish jentic skill to ClawHub
on:
push:
branches: [main]
paths:
- 'skills/jentic/**'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clawhub CLI
run: npm install -g clawhub
- name: Login to ClawHub
run: clawhub login --token ${{ secrets.CLAWHUB_API_TOKEN }} --no-browser
- name: Extract version from SKILL.md
id: version
run: |
VERSION=$(grep '^version:' skills/jentic/SKILL.md | head -1 | sed 's/version: *//')
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Publish jentic skill
run: clawhub --no-input publish skills/jentic --slug jentic --name "Jentic" --version "${{ steps.version.outputs.version }}" --changelog "${{ github.event.head_commit.message }}"