@krx3d/tizentube2 1.15.400 → 1.15.410

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -563,6 +563,15 @@ jobs:
563
563
 
564
564
  - name: Purge jsDelivr cache
565
565
  if: steps.publish_npm.outcome == 'success'
566
+ # jsDelivr rate-limits how often the same path can be re-purged
567
+ # ("Purging request ... was throttled") — expected on frequent
568
+ # releases, not an actual failure of the publish itself. The next
569
+ # step already exists specifically to handle this (runs on
570
+ # failure(), continue-on-error: true, purges each URL individually
571
+ # via curl) and has been confirmed working on-device. Without
572
+ # continue-on-error here, a benign throttle still failed the whole
573
+ # job even though that fallback ran and succeeded.
574
+ continue-on-error: true
566
575
  uses: egad13/purge-jsdelivr-cache@v1
567
576
  with:
568
577
  url: ${{ steps.cdn_urls.outputs.urls }}