diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 846d610..c6672bf 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -113,7 +113,8 @@ jobs: 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" + # Use `cat >` for the initial content, no indentation inside the heredoc + cat > "$README_PATH" <<-EOF # osu! Swiss Community Skin collection Welcome to the osu! Swiss Community Skin collection, this repository archives and showcases Skins osc members use. @@ -125,6 +126,7 @@ jobs: If you're interested in adding your skins here please follow this tutorial [how-to-use](/how-to-use.md) ## Skins +
list instead of icons
@@ -141,9 +143,9 @@ jobs: EOF - sort -t '|' -k1,1n "$user_rows_file" | cut -d'|' -f2- >> "$README_PATH" + sort -t '|' -k1,1n "$user_rows_file" | cut -d'|' -f2- | sed 's/^/ /' >> "$README_PATH" - cat <<-EOF >> "$README_PATH" + cat >> "$README_PATH" <<-EOF
@@ -151,9 +153,9 @@ jobs:

EOF - sort -t '|' -k1,1n "$avatar_rows_file" | cut -d'|' -f2- >> "$README_PATH" + sort -t '|' -k1,1n "$avatar_rows_file" | cut -d'|' -f2- | sed 's/^/ /' >> "$README_PATH" - cat <<-EOF >> "$README_PATH" + cat >> "$README_PATH" <<-EOF

EOF