chore: update steam apps list 2025-06-01T10:28:01Z

This commit is contained in:
Gitea Actions 2025-06-01 10:28:01 +00:00
parent abec9bbef8
commit 64257beed0
5 changed files with 3874 additions and 384 deletions

View File

@ -1221,7 +1221,7 @@
},
{
"normalized_name": "ヘブンバーンズレッド (heaven burns red)",
"status": "Broken"
"status": "Running"
},
{
"normalized_name": "microworks",
@ -1405,7 +1405,7 @@
},
{
"normalized_name": "wuthering waves",
"status": "Broken"
"status": "Planned"
},
{
"normalized_name": "dota underlords",
@ -1513,7 +1513,7 @@
},
{
"normalized_name": "mabinogi",
"status": "Broken"
"status": "Running"
},
{
"normalized_name": "tekken 7 (esl)",
@ -1621,7 +1621,7 @@
},
{
"normalized_name": "delta force hawk ops",
"status": "Broken"
"status": "Denied"
},
{
"normalized_name": "lightning",
@ -4394,5 +4394,17 @@
{
"normalized_name": "infinity nikki",
"status": "Broken"
},
{
"normalized_name": "rematch",
"status": "Running"
},
{
"normalized_name": "nba 2k25",
"status": "Running"
},
{
"normalized_name": "elden ring nightreign",
"status": "Running"
}
]

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

30
push-to-gitea.sh Executable file
View File

@ -0,0 +1,30 @@
#!/bin/sh
set -e
timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
AUTHOR_EMAIL=${INPUT_AUTHOR_EMAIL:-'gitea-actions@users.noreply.gitea.com'}
AUTHOR_NAME=${INPUT_AUTHOR_NAME:-'Gitea Actions'}
MESSAGE=${INPUT_MESSAGE:-"chore: update steam apps list ${timestamp}"}
BRANCH=main
INPUT_DIRECTORY=${INPUT_DIRECTORY:-'.'}
echo "Push to branch $INPUT_BRANCH"
[ -z "${GITEA_TOKEN}" ] && {
echo 'Missing input "gitea_token: bcde86030adcb863b8ff96f994ecf248ced607e4".'
exit 1
}
cd "${INPUT_DIRECTORY}"
remote_repo="https://${GITEA_ACTOR}:${GITEA_TOKEN}@${GITEA_SERVER}/${GITEA_REPOSITORY}.git"
git config http.sslVerify false
git config --local user.email "${AUTHOR_EMAIL}"
git config --local user.name "${AUTHOR_NAME}"
git add -A
git commit -m "${MESSAGE}" || exit 0
git push "${remote_repo}" HEAD:"${BRANCH}"