Skip to content

Commit af7fafd

Browse files
authored
GH-48098: [R] Fix nightly libarrow binary uploads (#48100)
### Rationale for this change R nightly libarrow C++ binary uploads have been failing ### What changes are included in this PR? Fix artifact pattern matching in the R nightly upload workflow to correctly find and copy libarrow C++ binaries. ### Are these changes tested? Will verify once workflow runs successfully and files appear at https://nightlies.apache.org/arrow/r/libarrow/ ### Are there any user-facing changes? Yes - restores nightly libarrow C++ binary availability for R package source builds. * GitHub Issue: #48098 Authored-by: Nic Crane <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 92a5c8b commit af7fafd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/r_nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@ jobs:
125125
)
126126
current_lib_path <- list.files(art_path,
127127
full.names = TRUE,
128-
pattern = "r-lib",
128+
pattern = "r-libarrow",
129129
recursive = TRUE
130130
)
131131
current_path <- c(current_pkg_path, current_lib_path)
132132
files <- c(
133133
sub("r-pkg", repo_root, current_pkg_path),
134-
sub("r-lib", paste0(repo_root, "__r-lib"), current_lib_path)
134+
sub("r-libarrow", paste0(repo_root, "__libarrow__r-libarrow"), current_lib_path)
135135
)
136136
137137
# decode contrib.url from artifact name:

0 commit comments

Comments
 (0)