Seperate artifact upload
Some checks failed
Build ptprnt / build (push) Failing after 1m17s

This commit is contained in:
2024-05-01 11:09:29 +02:00
parent 1065e38f5b
commit 6ec53d750f

View File

@@ -44,9 +44,17 @@ jobs:
run: ninja -C builddir coverage-text run: ninja -C builddir coverage-text
- name: Coverage report - name: Coverage report
run: cat ./builddir/meson-logs/coverage.txt 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 - name: upload dist package
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ptprnt 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 if-no-files-found: error