File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,11 @@ jobs:
110110 echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY
111111 exit 0
112112 else
113+ if curl -fSsL "https://downloads.scummvm.org/frs/scummvm/${EXT_RELEASE}/scummvm_${EXT_RELEASE}-1_ubuntu24.04_amd64.deb" > /dev/null 2>&1; then
114+ artifacts_found="true"
115+ else
116+ artifacts_found="false"
117+ fi
113118 if [[ "${artifacts_found}" == "false" ]]; then
114119 echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
115120 echo "> New version detected, but not all artifacts are published yet; skipping trigger" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change 44project_name : docker-scummvm
55external_type : na
66custom_version_command : " curl -s https://downloads.scummvm.org/frs/scummvm/ | awk -F'(<a href=\" |/\" >)' '{print $2}'| grep -B 1 'daily' |head -n1"
7+ external_artifact_check : |
8+ if curl -fSsL "https://downloads.scummvm.org/frs/scummvm/${EXT_RELEASE}/scummvm_${EXT_RELEASE}-1_ubuntu24.04_amd64.deb" > /dev/null 2>&1; then
9+ artifacts_found="true"
10+ else
11+ artifacts_found="false"
12+ fi
713release_type : stable
814release_tag : latest
915ls_branch : master
You can’t perform that action at this time.
0 commit comments