From f0ac161e2f0797081f32052859da91523ba0b369 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Wed, 5 Aug 2026 20:38:28 +0200 Subject: [PATCH] fix url check workflow (#378) * fix url check workflow lychee v24 now includes parsing xml files, however they don't support arbitrary xmls, we only care about parsing the contents of the picurl so I decided that we do away their parsing and simply extract only the part we care about * forgot it was "run" not "script" --- .github/workflows/check_links.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_links.yml b/.github/workflows/check_links.yml index 972a21b..6c4770f 100644 --- a/.github/workflows/check_links.yml +++ b/.github/workflows/check_links.yml @@ -42,11 +42,8 @@ jobs: # Extract picture URLs from tokens.xml - name: Extract URLs id: tokens_pic_urls - uses: lycheeverse/lychee-action@v2 - with: - args: --dump -- tokens.xml - output: url_list.md - jobSummary: false + shell: bash + run: grep tokens.xml -oPe '(?<=picURL=")[^"]+(?=")' >url_list.md # Check dumped URLs - name: Check token art URLs