Update .gitea/workflows/ci.yml

This commit is contained in:
Arlind
2025-06-20 15:38:05 +02:00
parent f40d26d967
commit cbc4f9436b

View File

@@ -112,7 +112,7 @@ jobs:
user_rows_file="${{ steps.find_skins.outputs.user_rows_file }}" user_rows_file="${{ steps.find_skins.outputs.user_rows_file }}"
avatar_rows_file="${{ steps.find_skins.outputs.avatar_rows_file }}" avatar_rows_file="${{ steps.find_skins.outputs.avatar_rows_file }}"
cat <<EOF > "$README_PATH" cat <<-EOF > "$README_PATH"
# osu! Swiss Community Skin collection # osu! Swiss Community Skin collection
Welcome to the osu! Swiss Community Skin collection, this repository archives and showcases Skins osc members use. Welcome to the osu! Swiss Community Skin collection, this repository archives and showcases Skins osc members use.
@@ -126,7 +126,7 @@ jobs:
## Skins ## Skins
<details> <details>
<summary>list instead of icons</summary> <summary>list instead of icons</summary>
<br> <br />
<table border="1" cellpadding="5" cellspacing="0"> <table border="1" cellpadding="5" cellspacing="0">
<thead> <thead>
<tr> <tr>
@@ -142,7 +142,7 @@ jobs:
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> </tbody>
</table> </table>
</details> </details>
@@ -151,7 +151,10 @@ jobs:
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"
echo "</p>" >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
</p>
EOF
rm -f "$user_rows_file" "$avatar_rows_file" rm -f "$user_rows_file" "$avatar_rows_file"