From 0cff1d6fc63b50f03fbea2ade45c164683dd4fae Mon Sep 17 00:00:00 2001 From: J-E Castagnede Date: Mon, 18 Nov 2024 13:04:28 +0100 Subject: [PATCH] fix example files --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8299d35..9ab630f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -151,7 +151,7 @@ jobs: - name: Test ODT / PDF conversion run: | - wget -O myfile.pdf "http://localhost:6543/?url=https://file-examples.com/storage/febf69dcf3656dfd992b0fa/2017/10/file-sample_100kB.odt&from=application/vnd.oasis.opendocument.text" + wget -O myfile.pdf "http://localhost:6543/?url=https://file-examples.com/wp-content/storage/2017/10/file-sample_100kB.odt&from=application/vnd.oasis.opendocument.text" if file -b --mime-type ./myfile.pdf |grep -q 'application/pdf'; then echo "File is PDF"; @@ -164,7 +164,7 @@ jobs: - name: Test ODT / DOC conversion run: | - wget -O myfile.doc "http://localhost:6543/?url=https://file-examples.com/storage/febf69dcf3656dfd992b0fa/2017/10/file-sample_100kB.odt&from=application/vnd.oasis.opendocument.text&to=application/msword" + wget -O myfile.doc "http://localhost:6543/?url=https://file-examples.com/wp-content/storage/2017/10/file-sample_100kB.odt&from=application/vnd.oasis.opendocument.text&to=application/msword" if file -b --mime-type ./myfile.doc |grep -q 'application/msword'; then echo "File is DOC";