From 73d9051cb56e2d62aaa00bd83ecd3383b15ec35f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:35:53 +0000 Subject: [PATCH 1/3] chore(deps): bump libwebp from `dfdcb7f` to `a3ba6f1` Bumps [libwebp](https://github.com/webmproject/libwebp) from `dfdcb7f` to `a3ba6f1`. - [Commits](https://github.com/webmproject/libwebp/compare/dfdcb7f95ca280b2555020115b8f288a5a3453c2...a3ba6f19e9d17d62a3ee411ff7b5505876ff76e7) --- updated-dependencies: - dependency-name: libwebp dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- libwebp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libwebp b/libwebp index dfdcb7f..a3ba6f1 160000 --- a/libwebp +++ b/libwebp @@ -1 +1 @@ -Subproject commit dfdcb7f95ca280b2555020115b8f288a5a3453c2 +Subproject commit a3ba6f19e9d17d62a3ee411ff7b5505876ff76e7 From a3dd28869dea952b7b558c90196b45fffe3d0b4e Mon Sep 17 00:00:00 2001 From: liuliangsir Date: Fri, 8 Nov 2024 12:55:22 +0800 Subject: [PATCH 2/3] chore(patches): update libwebp.diff patch --- patches/libwebp.diff | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/libwebp.diff b/patches/libwebp.diff index 673f38b..3ab0dcd 100644 --- a/patches/libwebp.diff +++ b/patches/libwebp.diff @@ -1,5 +1,5 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index a1ea7450c..a9f07c887 100644 +index d7e8963f2..c3412457f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -565,6 +565,22 @@ if(WEBP_BUILD_GIF2WEBP) @@ -24,4 +24,4 @@ index a1ea7450c..a9f07c887 100644 + -s EXPORTED_RUNTIME_METHODS='[\"ccall\",\"cwrap\",\"FS\",\"stringToUTF8\",\"lengthBytesUTF8\",\"setValue\"]'") target_link_libraries(gif2webp exampleutil imageioutil webp libwebpmux ${WEBP_DEP_GIF_LIBRARIES}) - target_include_directories(gif2webp PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/src) + target_include_directories(gif2webp PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/src From 62bfc46067ad3df70046ad80b7f4704eec21d6f3 Mon Sep 17 00:00:00 2001 From: liuliangsir Date: Fri, 8 Nov 2024 05:57:21 +0000 Subject: [PATCH 3/3] fix: no site artifact download with deploy-preview job from preview deploy workflow --- .github/workflows/preview-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml index 648453f..cf9b169 100644 --- a/.github/workflows/preview-deploy.yml +++ b/.github/workflows/preview-deploy.yml @@ -30,7 +30,7 @@ jobs: run_id: ${{ github.event.workflow_run.id }}, }); - // { [name]: [conclusion] }, e.g. { 'build preview': 'success' } + // { [name]: [conclusion] }, e.g. { 'build site': 'success' } const jobs = (response.data?.jobs ?? []).reduce((acc, job) => { if(job?.status === 'completed' && 'name' in job && 'conclusion' in job) { acc[job.name] = job.conclusion; @@ -43,8 +43,8 @@ jobs: // the name here must be the same as `jobs.xxx.{name}` in preview-build.yml // set output - core.setOutput('build-success', jobs['build preview'] === 'success'); - core.setOutput('build-failure', jobs['build preview'] === 'failure'); + core.setOutput('build-success', jobs['build site'] === 'success'); + core.setOutput('build-failure', jobs['build site'] === 'failure'); return jobs; deploy-preview: