Improve actions pipeline #12

Merged
moritz merged 9 commits from modernize-pipeline into master 2024-05-01 09:23:13 +00:00
Showing only changes of commit 6ec53d750f - Show all commits

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