Skip to content

Commit

Permalink
Fix reusable-theia-extension workflow
Browse files Browse the repository at this point in the history
Remove hardcoded extensions/ prefix to align with the other commands using workflow input package_workspace
  • Loading branch information
lucas-koehler authored Jan 20, 2025
1 parent 5133b8e commit 17d820e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-theia-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: github.event_name == 'push'
id: version_check
run: |
VERSION=$(cd extensions/${{ inputs.package_workspace }} && node --print "require('./package.json').version")
VERSION=$(cd ${{ inputs.package_workspace }} && node --print "require('./package.json').version")
echo "Package version: ${VERSION}"
if [[ $VERSION == *"-next" ]]; then
echo "is_next_version=true" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 17d820e

Please sign in to comment.