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