From f23a738c60a1b2f87616aec5dd53cdb5c27969ac Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 19 Mar 2024 10:38:32 -0400 Subject: [PATCH] attempt to generate services list --- .github/workflows/update-services.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-services.yml b/.github/workflows/update-services.yml index 1eb43831..6e48ea21 100644 --- a/.github/workflows/update-services.yml +++ b/.github/workflows/update-services.yml @@ -38,15 +38,15 @@ jobs: services="$services\n- $service_name" fi done - echo "# Available Services" > ./services.md - echo "" >> ./services.md - echo -e "$services" >> ./services.md + echo "# Available Services" > ./SERVICES.md + echo "" >> ./SERVICES.md + echo -e "$services" >> ./SERVICES.md - name: Commit Services Markdown - if: steps.changes.outputs.changed == 'true' + #if: steps.changes.outputs.changed == 'true' run: | git config --global user.name 'GitHub Actions' git config --global user.email 'actions@github.com' - git add ./services.md + git add ./SERVICES.md git commit -m "Update services.md" || echo "No changes to commit" git push \ No newline at end of file