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