From 74f5f55aac6830ad1ca51c58868370d1a849ea64 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sat, 25 Apr 2026 14:10:25 +0200 Subject: [PATCH] action.yml: Run make pkg-manager-refresh Before building jw-pkg from source, make pkg-install-release-deps is called without refreshing the package manager before. Fix that by calling make -C jw-pkg pkg-manager-refresh. Note that it's called again later. Leaving that in because the second step doesn't hurt, and the first steppe might get scrapped entirely at some point. Signed-off-by: Jan Lindemann --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 9b026d4..c125987 100644 --- a/action.yml +++ b/action.yml @@ -19,6 +19,7 @@ runs: owner=janware makefile=$PROJECTS_DIR_REMOTE_BASE/$owner/jw-pkg/raw/branch/master/make/projects-dir-minimal.mk curl --create-dirs -o build-jw-foss/Makefile $makefile + make -C build-jw-foss pkg-manager-refresh make -C build-jw-foss pkg-install-release-deps OFFLINE=true make -C build-jw-foss pkg-rebuild-reinstall )