ci: fix release workflow after studio extraction#79
Merged
Conversation
The release workflow tried to build the SvelteKit frontend (studio-frontend/) and run scripts/build_studio.py, both removed by PR #75. setup-node failed at cache-dependency-path: Some specified paths were not resolved, unable to cache dependencies. Drop the npm/setup-node steps and the build_studio.py call. The release is now a pure Python build: uv build -> gh release create Tag trigger 'v*' is unchanged.
be4c91b to
e9fd590
Compare
javier-alvarez
approved these changes
Apr 28, 2026
Closed
ancongui
pushed a commit
that referenced
this pull request
May 31, 2026
…tudio ci: fix release workflow after studio extraction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the release workflow that broke when the 26.04.28 tag was pushed (run 25046072152).
The workflow still tried to build the SvelteKit frontend (
studio-frontend/) and runscripts/build_studio.py— both removed by PR #75 — soactions/setup-node@v4failed at thecache-dependency-path: studio-frontend/package-lock.jsonstep:Changes
setup-node,npm ci,npm run build, anduv run python scripts/build_studio.pysteps. The release is now a pure Python build (uv build→gh release create).The tag trigger
tags: ['v*']is unchanged.Follow-up
After merge, retag the release:
git checkout main && git pull git tag v26.04.28 git push origin v26.04.28The previous
v26.04.28tag (created against the broken workflow commit) has been deleted.