File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,10 @@ mkai_arch=$(dpkg --print-architecture)
4343if [ " $mkai_arch " = arm64 ]; then
4444 mkai_arch=aarch64
4545fi
46- mkai_url=$( curl https://api.github.com/repos/probonopd/go-appimage/releases/tags/continuous | grep " browser_download_url.*mkappimage-.*-$mkai_arch .AppImage" | head -n 1 | cut -d ' "' -f 4)
46+ mkai_url=$( curl -H " Authorization: token $GITHUB_TOKEN " \
47+ https://api.github.com/repos/probonopd/go-appimage/releases/tags/continuous |
48+ grep " browser_download_url.*mkappimage-.*-$mkai_arch .AppImage" | head -n 1 |
49+ cut -d ' "' -f 4)
4750curl -L " $mkai_url " > mkappimage
4851chmod 755 mkappimage
4952# shellcheck disable=SC2211
Original file line number Diff line number Diff line change 1212 Build :
1313 if : github.repository == 'CESNET/UltraGrid' || github.event.schedule == null
1414 runs-on : ubuntu-22.04 # TODO: see the commit message why 22.04 is explicit
15+ env :
16+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
1517 strategy :
1618 matrix :
1719 arch : [armhf, arm64]
You can’t perform that action at this time.
0 commit comments