change
All checks were successful
Build Changed / build_and_upload_changed_packages (push) Successful in 26s

This commit is contained in:
ksyasuda 2023-08-09 19:56:01 -07:00
parent 63f3ff7c79
commit cc762e3f96
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -15,10 +15,10 @@ jobs:
- run: pip3 install -U pip
- run: pip install twine build toml
# Determine the list of changed files using git
- run: git diff --name-only $CI_COMMIT_BEFORE_SHA $CI_COMMIT_SHA > changed_files.txt
- run: echo "Checking for changed packages"
- name: Loop through each package directory, check if version has changed, build if changed, and then upload
run: |
git diff --name-only $CI_COMMIT_BEFORE_SHA $CI_COMMIT_SHA > changed_files.txt
for package_dir in ./*; do
if [ -d "$package_dir" ]; then
package_name=$(basename $package_dir)

View File

@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup(
name="colored-output",
version="0.0.2",
version="0.0.3",
author="Kyle Yasuda",
author_email="suda@sudacode.com",
description="Colors",