We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a0e51 commit 16a2267Copy full SHA for 16a2267
1 file changed
.github/workflows/deb.yml
@@ -33,17 +33,20 @@ jobs:
33
- name: Build package
34
run: |
35
dpkg-buildpackage -us -uc
36
+ mkdir -p artifacts
37
+ find .. -maxdepth 1 -type f \( -name '*.deb' -o -name '*.dsc' -o -name '*.changes' -o -name '*.buildinfo' -o -name '*.tar.*' \) -exec mv {} artifacts/ \;
38
+ ls -l artifacts
39
40
- name: Upload .deb artifacts
41
uses: actions/upload-artifact@v4
42
with:
43
name: debs
- path: ../*.deb
44
+ path: artifacts/*.deb
45
46
- name: Attach to GitHub Release
47
if: startsWith(github.ref, 'refs/tags/')
48
uses: softprops/action-gh-release@v2
49
- files: ../*.deb
50
+ files: artifacts/*.deb
51
env:
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments