Added test for publish bundle pipeline
publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 5s
publish-vs-code-extensions.yml / Publish VS Code Extension (push) Successful in 5s
This commit is contained in:
@@ -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)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user