more verbosity

This commit is contained in:
2025-08-11 14:02:26 +00:00
parent c57d56aeaa
commit b0f62c3793

View File

@ -120,18 +120,22 @@ jobs:
doc_exports_var = categories.get(docs_service_category, {})
print(doc_exports_var)
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
fh.write(json.dump(doc_exports_var))
# Write doc_exports_var to env file, serialized as JSON for easy later processing
import json
with open('doc_exports_var.json', 'w') as jf:
json.dump(doc_exports_var, jf)
EOF
echo "Loaded doc_exports_var and saved to doc_exports_var.json"
echo "Loaded doc_exports_var and saved to doc_exports_var.json"
- name: Get last git changed files
id: git_log
run: |
cd $PROJECT_SRC_DIR
ls
echo > ../changed_files.txt
git log -1 --name-only --pretty= > ../changed_files.txt || true
cat ../changed_files.txt