File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed
Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ process_channel() {
1414 local channel=" $2 "
1515 local stable=" $3 "
1616
17- exec 3>&1 # Open FD 3 for returning structured output
18-
1917 echo " ::group::Checking ${app} /${channel} (stable=${stable} )"
2018
2119 published_version=$(
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- version=$( curl -sLf https://api.github.com/repos/advplyr/audiobookshelf/releases/latest | jq --raw-output ' . | .tag_name' )
2+ AUTH=" Authorization: token ${GH_PAT:- ${TOKEN:- } } "
3+ version=$( curl -sLf -H " $AUTH " https://api.github.com/repos/advplyr/audiobookshelf/releases/latest | jq --raw-output ' . | .tag_name' )
34# version="${version#*v}"
45version=" ${version#* release-} "
56printf " %s" " ${version} "
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- version=$( curl -Lsf https://api.github.com/repos/qdm12/gluetun/releases/latest | jq --raw-output ' . | .tag_name' )
2+ AUTH=" Authorization: token ${GH_PAT:- ${TOKEN:- } } "
3+ version=$( curl -Lsf -H " $AUTH " https://api.github.com/repos/qdm12/gluetun/releases/latest | jq --raw-output ' . | .tag_name' )
34version=" ${version#* v} "
45printf " %s" " ${version} "
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- version=$( curl -Lsf https://api.github.com/repos/rclone/rclone/releases/latest | jq --raw-output ' . | .tag_name' )
2+ AUTH=" Authorization: token ${GH_PAT:- ${TOKEN:- } } "
3+ version=$( curl -Lsf -H " $AUTH " https://api.github.com/repos/rclone/rclone/releases/latest | jq --raw-output ' . | .tag_name' )
34version=" ${version#* v} "
45printf " %s" " ${version} "
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- version=$( curl -sLf " https://api.github.com/repos/Tautulli/Tautulli/releases/latest" | jq --raw-output ' . | .tag_name' )
2+ AUTH=" Authorization: token ${GH_PAT:- ${TOKEN:- } } "
3+ version=$( curl -sLf -H " $AUTH " " https://api.github.com/repos/Tautulli/Tautulli/releases/latest" | jq --raw-output ' . | .tag_name' )
34version=" ${version#* v} "
45version=" ${version#* release-} "
56printf " %s" " ${version} "
You can’t perform that action at this time.
0 commit comments