Update .gitea/workflows/build.yaml
Some checks failed
Release Version / build (push) Failing after 46s

This commit is contained in:
leafus 2024-09-29 04:01:05 +02:00
parent 81646c5bdb
commit 723ba2c8ca

View File

@ -35,7 +35,6 @@ jobs:
latest_version=$(git describe --tags --abbrev=0 || echo "v0.0.0") latest_version=$(git describe --tags --abbrev=0 || echo "v0.0.0")
new_version=$(echo $latest_version | awk -F. '{printf "v%d.%d.%d", $1, $2, $3+1}') new_version=$(echo $latest_version | awk -F. '{printf "v%d.%d.%d", $1, $2, $3+1}')
# Sprawdzenie, czy nowy tag już istnieje
if git rev-parse "$new_version" >/dev/null 2>&1; then if git rev-parse "$new_version" >/dev/null 2>&1; then
echo "Tag $new_version already exists. Exiting." echo "Tag $new_version already exists. Exiting."
exit 1 exit 1
@ -72,3 +71,6 @@ jobs:
asset_path: ./s3-client asset_path: ./s3-client
asset_name: s3-client_${{ env.new_version }}_linux_amd64 asset_name: s3-client_${{ env.new_version }}_linux_amd64
asset_content_type: application/octet-stream asset_content_type: application/octet-stream
env:
GITEA_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ secrets.TOKEN }}