Moving README generation into its own workflow.

This commit is contained in:
2025-10-05 21:21:12 -04:00
parent dbe0ffeb61
commit 71b3b83c3f
3 changed files with 42 additions and 75 deletions
-25
View File
@@ -26,31 +26,6 @@ jobs:
with:
fetch-depth: 0 # required so we can access main^1
- name: Generate service list for README
run: |
yq '.services | to_entries | map({"service": .key, "image": .value.image, "description": (.value.labels."homepage.description" // "")})' docker-compose.yml > services.yml
- name: Generate Markdown Table
uses: gazab/create-markdown-table@6686233d7008e8d8b9d4bbdbfd1fb1ae510019f0 # v1.0.7
id: service-table
with:
file: ./services.yml
- name: Regenerate README
run: |
echo "# List of Services" > README.md
echo -e "\n\n" >> README.md
echo "${{ steps.service-table.outputs.table }}" >> README.md
- name: Add, Commit, & Push README.md
id: commit-readme
uses: actions4git/add-commit-push@v1.0.0
with:
path: .
add-pathspec: "README.md"
commit-author: me
commit-message: "chore: Update README"
- name: Save docker-compose.yml before merge (old)
run: |
git fetch origin main