Skip to content

Commit 930bb70

Browse files
committed
fix: correct relative path to influxdb3_plugins dir
1 parent 00d233a commit 930bb70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sync-plugins.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ jobs:
264264
- name: Transform plugin documentation
265265
if: steps.validate.outputs.validation_passed == 'true'
266266
run: |
267-
cd docs-v2/helper-scripts/influxdb3-plugins # ← CHANGE: Run from script directory
267+
cd docs-v2/helper-scripts/influxdb3-plugins
268268
269269
# Set path to plugins repo (relative from script directory)
270-
export INFLUXDB3_PLUGINS_PATH="../../../.ext/influxdb3_plugins" # ← CHANGE: Adjust relative path
270+
export INFLUXDB3_PLUGINS_PATH="../../../.ext/influxdb3_plugins"
271271
272272
# Run the transformation
273273
if [[ "${{ steps.inputs.outputs.plugins }}" == "all" ]]; then
@@ -278,7 +278,7 @@ jobs:
278278
for plugin in "${PLUGIN_ARRAY[@]}"; do
279279
plugin=$(echo "$plugin" | xargs) # trim whitespace
280280
echo "Transforming plugin: $plugin"
281-
node port_to_docs.js --plugin "$plugin" # ← CHANGE: Script is in current dir
281+
node port_to_docs.js --plugin "$plugin"
282282
done
283283
fi
284284

0 commit comments

Comments
 (0)