Added test for publish bundle pipeline
publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 5s

This commit is contained in:
2026-09-10 18:20:23 +02:00
parent 0443871583
commit 12d3ad3341
2 changed files with 4 additions and 3 deletions
@@ -54,6 +54,7 @@ jobs:
echo "All checks passed!" echo "All checks passed!"
publish_action: publish_action:
needs: test_action
uses: ./.github/workflows/_publish-action-release.yml uses: ./.github/workflows/_publish-action-release.yml
with: with:
action-directory: github-actions/install-lua-addon action-directory: github-actions/install-lua-addon
@@ -27,9 +27,9 @@ async function run() {
return; return;
} }
// Reference lua-addons relative to the dist directory // Reference lua-addons bundled in dist directory
// __dirname is dist/, so lua-addons is one level up // __dirname is dist/, lua-addons is bundled alongside
const bundledAddonsDir = path.resolve(__dirname, '../lua-addons'); const bundledAddonsDir = path.resolve(__dirname, './lua-addons');
// Verify bundled addons directory exists // Verify bundled addons directory exists
if (!existsSync(bundledAddonsDir)) { if (!existsSync(bundledAddonsDir)) {