Update .gitea/workflows/ci.yml
All checks were successful
Update Community Skins README / Full CI/CD Pipeline (push) Successful in 6s

This commit is contained in:
Arlind
2025-06-20 15:38:50 +02:00
parent cbc4f9436b
commit 5c4b1d06cb

View File

@@ -111,6 +111,7 @@ jobs:
run: |
user_rows_file="${{ steps.find_skins.outputs.user_rows_file }}"
avatar_rows_file="${{ steps.find_skins.outputs.avatar_rows_file }}"
README_PATH="README.md" # Assuming README.md is in the root of the repository
cat <<-EOF > "$README_PATH"
# osu! Swiss Community Skin collection
@@ -138,23 +139,23 @@ jobs:
</tr>
</thead>
<tbody>
EOF
EOF
sort -t '|' -k1,1n "$user_rows_file" | cut -d'|' -f2- >> "$README_PATH"
sort -t '|' -k1,1n "$user_rows_file" | cut -d'|' -f2- >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
</tbody>
</table>
</details>
<p align="center">
EOF
EOF
sort -t '|' -k1,1n "$avatar_rows_file" | cut -d'|' -f2- >> "$README_PATH"
sort -t '|' -k1,1n "$avatar_rows_file" | cut -d'|' -f2- >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
</p>
EOF
EOF
rm -f "$user_rows_file" "$avatar_rows_file"