From 784cef2c7473954641fc1ccecab744923134bcd5 Mon Sep 17 00:00:00 2001 From: samuel Date: Sat, 14 Feb 2026 22:17:36 +0100 Subject: [PATCH] ci: add --fail-with-body --- .gitea/workflows/ci.yaml | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0c70f84..c351109 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -13,6 +13,8 @@ jobs: uses: actions/checkout@v6 with: fetch-tags: true + - name: Show tags + run: git tag --list - name: Build tarball run: make tarball - name: Build rpm package diff --git a/Makefile b/Makefile index 44e8a50..4582926 100644 --- a/Makefile +++ b/Makefile @@ -48,4 +48,4 @@ tarball: $(RPM_TARBALL_PATH) .PHONY: upload upload: - curl --upload-file "$(RPM_BUILD_PATH)" https://git.netoik.io/api/packages/samuel/rpm/upload + curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" https://git.netoik.io/api/packages/samuel/rpm/upload