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 c15b305 commit 2a3a19cCopy full SHA for 2a3a19c
.github/workflows/main.yml
@@ -58,6 +58,27 @@ jobs:
58
path: |
59
./build/ROSProjectManager-*-*-*.zip
60
61
+ - name: install Qt Creator DEB package
62
+ if: runner.os == 'Linux'
63
+ run: |
64
+ ./packaging/qtcreator_deb_install.sh
65
+
66
+ - name: generate plugin DEB package
67
68
69
+ cd build
70
+ cpack -G DEB
71
72
+ - name: upload artifact (DEB)
73
74
+ uses: actions/upload-artifact@v4
75
+ with:
76
+ name: plugin_archive_artifact_${{ matrix.config.name }}
77
+ if-no-files-found: error
78
+ path: |
79
+ ./build/*.deb
80
+ ./build/*.ddeb
81
82
release:
83
name: create release
84
if: contains(github.ref, '/tags/')
0 commit comments