chore: add skills dependencies installation step in release workflow

- Included a new step to install dependencies for the skills directory in the GitHub Actions release workflow to ensure all necessary packages are available for the build process.
This commit is contained in:
Steven Enamakel
2026-03-26 15:45:26 -07:00
parent 8bebad6b39
commit e5abaa1829
+3
View File
@@ -251,6 +251,9 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install skills dependencies
run: cd skills && yarn install --frozen-lockfile
- name: Build skills
run: cd skills && yarn build