From 6ec53d750f05fd13339e15c6fc26de2b2ee704cf Mon Sep 17 00:00:00 2001 From: Moritz Martinius Date: Wed, 1 May 2024 11:09:29 +0200 Subject: [PATCH] Seperate artifact upload --- .gitea/workflows/build.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a9d1b0d..a4815c8 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -44,9 +44,17 @@ jobs: run: ninja -C builddir coverage-text - name: Coverage report run: cat ./builddir/meson-logs/coverage.txt + # we need to upload each artifact on its own as gitea currently only supports one artifact per action - name: upload dist package uses: actions/upload-artifact@v4 with: name: ptprnt - path: ./builddir/meson-dist/* + path: ./builddir/meson-dist/*.xz + if-no-files-found: error + # we need to upload each artifact on its own as gitea currently only supports one artifact per action + - name: upload dist package checksum + uses: actions/upload-artifact@v4 + with: + name: ptprnt + path: ./builddir/meson-dist/*.sha256sum if-no-files-found: error