We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349f472 commit a33f8a3Copy full SHA for a33f8a3
.github/workflows/c-cpp.yml
@@ -56,13 +56,12 @@ jobs:
56
lintian ../libqgcodeeditor*.deb | lintian-info
57
58
- name: Upload artifacts
59
- uses: actions/upload-artifact@v4
+ run: |
60
+ mkdir -p artifacts
61
+ cp ../*.buildinfo ../*.changes ../*.dsc ../*.tar.* ../*.deb artifacts/ 2>/dev/null || true
62
+
63
+ - uses: actions/upload-artifact@v4
64
with:
65
name: ${{ matrix.target }}-${{ matrix.qt-version }}
66
if-no-files-found: error
- path: |
- ../*.buildinfo
- ../*.changes
- ../*.dsc
67
- ../*.tar.*
68
- ../*.deb
+ path: artifacts
0 commit comments