From 4b21e1e7f66284e1be0343550e946740751fd4a2 Mon Sep 17 00:00:00 2001 From: Jonas Hagberg Date: Thu, 2 Jan 2025 21:51:06 +0100 Subject: [PATCH] Update create_packages.yml to correct file paths for R and r-api directories - Changed the file path for the R directory from 'r-api/**' to 'R/**'. - Updated the r-api Dockerfile path to include '.docker/r-api'. These modifications ensure that the workflow correctly references the intended directories for package creation. --- .github/workflows/create_packages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create_packages.yml b/.github/workflows/create_packages.yml index dffc09d6..37c08385 100644 --- a/.github/workflows/create_packages.yml +++ b/.github/workflows/create_packages.yml @@ -38,8 +38,9 @@ jobs: - 'docker/main.Dockerfile' - '.docker/main' r-api: - - 'r-api/**' + - 'R/**' - 'docker/r-api.Dockerfile' + - '.docker/r-api' build: needs: changes