ci: Remove unused .github/release script

This commit is contained in:
Wolfgang Walther
2024-02-26 22:06:01 +01:00
parent e70f001cfc
commit 1db6c04a28
2 changed files with 0 additions and 13 deletions
-12
View File
@@ -1,12 +0,0 @@
#!/usr/bin/env bash
# Tag a release that will be built with Github Actions. The version is
# read from 'postgrest.cabal'.
version="$(grep -oP '^version:\s*\K.*' postgrest.cabal)"
echo "Tagging version v$version"
git tag -f "v$version"
echo "Pushing tag..."
git push -f origin "refs/tags/v$version"