We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a319b commit 4f03470Copy full SHA for 4f03470
1 file changed
.github/workflows/update-generated-docs.yml
@@ -24,7 +24,10 @@ jobs:
24
id: versions
25
run: |
26
CURRENT_DOCS_VERSION=$(cat .github/workflows/current_docs_version.txt)
27
- LATEST_VERSION=$(git -C ../gitbutler tag --sort=-version:refname | grep '^nightly/' | head -n 1)
+ LATEST_VERSION=$(git -C ../gitbutler tag --list 'nightly/*' --sort=-version:refname | head -n 1)
28
+
29
+ echo "Current: $CURRENT_DOCS_VERSION"
30
+ echo "Latest: $LATEST_VERSION"
31
32
echo "latest_version=$LATEST_VERSION" >> "$GITHUB_OUTPUT"
33
0 commit comments