mirror of
https://github.com/italicsjenga/actions-test.git
synced 2025-01-03 22:11:42 +11:00
13 lines
152 B
Bash
Executable file
13 lines
152 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
var=0
|
|
echo $var
|
|
while ! git describe --tags main; do
|
|
var=$((var + 1))
|
|
echo wow
|
|
if ((var > 3)); then
|
|
exit 0
|
|
fi
|
|
done
|
|
echo done
|