Skip to content

Commit

Permalink
[CI] More reliable RStudio version capture (#666)
Browse files Browse the repository at this point in the history
Since RStudio IDE 2023.03.2+454 and 2023.06.0+421 were commited the same
day, (#661, #662, #663, #664, #665) incorrect automatic updates
continued.
  • Loading branch information
eitsupi authored Jun 14, 2023
1 parent 30f354b commit d262ef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/make-stacks.R
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ df_args <- df_r |>
dplyr::filter(.is_rstudio_deb_available(rstudio_version, ubuntu_series)) |>
dplyr::ungroup() |>
dplyr::group_by(r_version, ubuntu_series) |>
dplyr::slice_max(rstudio_commit_date, with_ties = FALSE) |>
dplyr::slice_max(rstudio_version, with_ties = FALSE) |>
dplyr::ungroup() |>
dplyr::group_by(r_minor_version = stringr::str_extract(r_version, "^\\d+\\.\\d+")) |>
dplyr::mutate(r_minor_latest = dplyr::if_else(dplyr::row_number() == dplyr::n(), TRUE, FALSE)) |>
Expand Down

0 comments on commit d262ef7

Please sign in to comment.