Skip to content

Commit

Permalink
attempt to generate services list
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed Mar 19, 2024
1 parent 4c3e95a commit f23a738
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/update-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f23a738

Please sign in to comment.