fix: upload name in build workflow
This commit is contained in:
parent
25787b6565
commit
cd8f8af922
|
|
@ -59,8 +59,11 @@ jobs:
|
|||
run: |
|
||||
qmake CONFIG+=install_ok QT_PLATFORM=${{matrix.platform}} "QT_TOOL_PATH=${{steps.qt.outputs.qtdir}}/Tools" nut.pro
|
||||
${{steps.qt.outputs.make}} qmake_all
|
||||
|
||||
- name: upload module to releases
|
||||
- name: make lib
|
||||
run: |
|
||||
${{steps.qt.outputs.make}}
|
||||
${{steps.qt.outputs.make}} INSTALL_ROOT="${{steps.qt.outputs.installdir}}" install
|
||||
- name: upload lib to releases
|
||||
uses: Skycoder42/action-upload-release@master
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
|
|
|
|||
|
|
@ -104,7 +104,6 @@ public:
|
|||
ConditionalPhrase addMonths(int months);
|
||||
ConditionalPhrase addDays(int days);
|
||||
|
||||
|
||||
ConditionalPhrase addHours(int hours);
|
||||
ConditionalPhrase addMinutes(int minutes);
|
||||
ConditionalPhrase addSeconds(int seconds);
|
||||
|
|
|
|||
Loading…
Reference in New Issue