We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
task release
1 parent 4538aa2 commit e2e2559Copy full SHA for e2e2559
.gitignore
@@ -1 +1 @@
1
-./glean
+glean
taskfile.yml
@@ -47,10 +47,16 @@ tasks:
47
# Ensure we're on main and up to date
48
- git checkout main
49
- git pull origin main
50
+ - git fetch --tags
51
52
# Run checks
53
- task: check
54
55
+ # Show current version and commits since last release
56
+ - echo "Current version is $(svu current)"
57
+ - echo "Commits since last release:"
58
+ - git log $(svu current)..HEAD --oneline
59
+
60
# Get the next version
61
- echo "Next version will be $(svu next)"
62
- echo "Press Ctrl+C to cancel or wait 5 seconds to continue..."
0 commit comments