crabidy/.gitea/scripts/check-tag

7 lines
109 B
Bash
Executable File

#!/bin/bash
if [ "$(echo $GITHUB_REF| cut -d'/' -f2)" != "tags" ]; then
echo "Not a tag"
exit 1;
fi