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
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -34,12 +34,7 @@ jobs:
|
|||||||
echo "module=$MODULE" >> $GITHUB_OUTPUT
|
echo "module=$MODULE" >> $GITHUB_OUTPUT
|
||||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
# Determine whether this tag is for a module or a skill.
|
echo "module_path=registry/$NAMESPACE/modules/$MODULE" >> $GITHUB_OUTPUT
|
||||||
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"
|
RELEASE_TITLE="$NAMESPACE/$MODULE $VERSION"
|
||||||
echo "release_title=$RELEASE_TITLE" >> $GITHUB_OUTPUT
|
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]
|
types: [labeled]
|
||||||
paths:
|
paths:
|
||||||
- "registry/**/modules/**"
|
- "registry/**/modules/**"
|
||||||
- "registry/**/skills/**"
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user