fix: remove skills handling from version-bump and release workflows
Skills are not versioned in the registry. Their versioning happens in the source repos. The version-bump workflow only handles modules, and the release.yml skill-path detection was based on the old per-skill directory format that no longer exists.
This commit is contained in:
parent
ec76fb7116
commit
d62b91f2f5
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@ -34,12 +34,7 @@ jobs:
|
||||
echo "module=$MODULE" >> $GITHUB_OUTPUT
|
||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
||||
|
||||
# Determine whether this tag is for a module or a skill.
|
||||
if [ -d "registry/$NAMESPACE/skills/$MODULE" ]; then
|
||||
echo "module_path=registry/$NAMESPACE/skills/$MODULE" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "module_path=registry/$NAMESPACE/modules/$MODULE" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
RELEASE_TITLE="$NAMESPACE/$MODULE $VERSION"
|
||||
echo "release_title=$RELEASE_TITLE" >> $GITHUB_OUTPUT
|
||||
|
||||
1
.github/workflows/version-bump.yaml
vendored
1
.github/workflows/version-bump.yaml
vendored
@ -5,7 +5,6 @@ on:
|
||||
types: [labeled]
|
||||
paths:
|
||||
- "registry/**/modules/**"
|
||||
- "registry/**/skills/**"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user