Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7e1973aca7 | ||
|
|
47bf506dc6 |
@@ -165,7 +165,18 @@ jobs:
|
||||
git config user.name "Gitea Actions"
|
||||
git config user.email "actions@gitea.tourolle.paris"
|
||||
git fetch origin master
|
||||
git checkout master
|
||||
# -B against origin/master, not a bare `checkout master`. The bare
|
||||
# form switches to the LOCAL master that actions/checkout left at the
|
||||
# run's own SHA, so if master moved while the build ran -- and this is
|
||||
# a nightly, so it usually has -- the manifest is edited on a stale
|
||||
# base and the push is rejected non-fast-forward. Run 1045 failed
|
||||
# exactly this way, having already printed "Your branch is behind
|
||||
# 'origin/master' by 1 commit" one line before committing anyway.
|
||||
#
|
||||
# Resetting is right rather than merely convenient: this step appends
|
||||
# one entry to the manifest as it stands on master, so the base it
|
||||
# edits must be master, not whatever this build started from.
|
||||
git checkout -B master origin/master
|
||||
|
||||
NEW_VERSION=$(cat <<EOF
|
||||
{
|
||||
|
||||
@@ -8,6 +8,14 @@
|
||||
"category": "Live TV",
|
||||
"imageUrl": "https://gitea.tourolle.paris/dtourolle/jellyfin-srfPlay/raw/branch/master/assests/main%20logo.png",
|
||||
"versions": [
|
||||
{
|
||||
"version": "1.1.1",
|
||||
"changelog": "Release 1.1.1",
|
||||
"targetAbi": "10.9.0.0",
|
||||
"sourceUrl": "https://gitea.tourolle.paris/dtourolle/jellyfin-srfPlay/releases/download/v1.1.1/srfplay_1.1.1.0.zip",
|
||||
"checksum": "4354a495d2d24ab2313c96bb5ea837bb",
|
||||
"timestamp": "2026-08-12T16:59:30Z"
|
||||
},
|
||||
{
|
||||
"version": "1.1.0",
|
||||
"changelog": "Release 1.1.0",
|
||||
|
||||
Reference in New Issue
Block a user