Skip to content

Commit

Permalink
chore: fix tagging variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
luciorq committed Jun 18, 2024
1 parent 3e596db commit 3b8861f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ github_org := 'luciorq'
\builtin set -euxo pipefail;
__r_pkg_version="$(R -q --no-echo --silent -e 'suppressMessages({pkgload::load_all()});cat(as.character(utils::packageVersion("{{ package_name }}")));')";
\builtin echo -ne "Tagging version: ${__r_pkg_version}\n";
git tag -a "v${__package_version}" HEAD -m "Version ${_r_pkg_version} released";
git tag -a "v${__r_pkg_version}" HEAD -m "Version ${__r_pkg_version} released";
git push --tags;

0 comments on commit 3b8861f

Please sign in to comment.