Skip to content

Commit

Permalink
Update cd-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chaithyagr authored Jan 5, 2024
1 parent e7f0903 commit 3410e65
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cd-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ jobs:
plugin_version="$(echo ${_plugin} | awk -F== '{print $2}')"
wget ${gh_root}${plugin_name}${tag_path}${plugin_version}.tar.gz -O ${plugin_name}.tar.gz
done < plugins.txt
for file in *.tar.gz; do tar xzf "$file"; done
for file in *.tar.gz;
do
tar xzf "$file";
pip install ${plugin_name}-*/${package_name}
done
rm *.tar.gz
- name: Extract plug-in examples
Expand Down

0 comments on commit 3410e65

Please sign in to comment.