mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 01:27:21 +01:00
8 lines
259 B
Bash
8 lines
259 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if git describe --tags --exact-match ; then
|
||
|
echo "::set-output name=VERSION::$(git describe --tags --exact-match | sed 's/^v//g')"
|
||
|
else
|
||
|
echo "::set-output name=VERSION::$(git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g')"
|
||
|
fi
|