diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ac0abe5..846d610 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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:
- 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"- 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"
- EOF + EOF rm -f "$user_rows_file" "$avatar_rows_file"