update build script again

This commit is contained in:
ksyasuda 2023-08-09 20:02:45 -07:00
parent cc762e3f96
commit df5ccfc1a6
No known key found for this signature in database

View File

@ -18,11 +18,11 @@ jobs:
- run: echo "Checking for changed packages" - run: echo "Checking for changed packages"
- name: Loop through each package directory, check if version has changed, build if changed, and then upload - name: Loop through each package directory, check if version has changed, build if changed, and then upload
run: | run: |
git diff --name-only $CI_COMMIT_BEFORE_SHA $CI_COMMIT_SHA > changed_files.txt echo "Starting check"
for package_dir in ./*; do for package_dir in ./*; do
if [ -d "$package_dir" ]; then if [ -d "$package_dir" ]; then
package_name=$(basename $package_dir) package_name=$(basename $package_dir)
if grep -q "$package_name" changed_files.txt; then if git diff --name-only $CI_COMMIT_BEFORE_SHA $CI_COMMIT_SHA | grep -q "$package_name"; then
echo "Checking version for: $package_name" echo "Checking version for: $package_name"
if [ -f "$package_dir/pyproject.toml" ]; then if [ -f "$package_dir/pyproject.toml" ]; then
current_version=$(python -c "import toml; data = toml.load('$package_dir/pyproject.toml'); print(data['project']['version']) if 'project' in data and 'version' in data['project'] else print(None)") current_version=$(python -c "import toml; data = toml.load('$package_dir/pyproject.toml'); print(data['project']['version']) if 'project' in data and 'version' in data['project'] else print(None)")