Skip to content

Commit

Permalink
build wasm go plugin fix2
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7258 committed Jun 26, 2024
1 parent 200df78 commit f04872e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push-wasm-go-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
PLUGIN_DIRS=(${{ github.event.inputs.plugin_name }})
else
PLUGIN_VERSION=${{ github.ref_name }}
PLUGIN_DIRS=$(basename -a ./extensions/*)
PLUGIN_DIRS=$(basename ./extensions/*)
fi
for plugin in "${PLUGIN_DIRS[@]}"; do
for plugin in ${PLUGIN_DIRS[@]}; do
echo "Build and push wasm go plugin: ${plugin}"
max_retries=3
retries=0
Expand Down

0 comments on commit f04872e

Please sign in to comment.