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 df41e0d commit 53f4a86Copy full SHA for 53f4a86
1 file changed
updater/tests/workflow-args.sh
@@ -5,21 +5,7 @@ set -euo pipefail
5
6
case $1 in
7
get-version)
8
- # Return the actual latest tag to ensure no update is needed
9
- # Always use remote lookup for consistency with update-dependency.ps1
10
- tags=$(git ls-remote --tags --refs https://github.com/getsentry/github-workflows.git | \
11
- sed 's/.*refs\/tags\///' | \
12
- grep -E '^v?[0-9.]+$')
13
-
14
- # Sort by version number, handling mixed v prefixes
15
- latest=$(echo "$tags" | sed 's/^v//' | sort -V | tail -1)
16
17
- # Check if original had v prefix and restore it
18
- if echo "$tags" | grep -q "^v$latest$"; then
19
- echo "v$latest"
20
- else
21
- echo "$latest"
22
- fi
+ echo "3.1.0"
23
24
# Run actual tests here.
25
if [[ "$(uname)" != 'Darwin' ]]; then
0 commit comments