Fix release job trigger.
This commit is contained in:
parent
de9ef4c948
commit
40119856de
@ -138,7 +138,7 @@ jobs:
|
|||||||
- name: Upload Qtk install directory
|
- name: Upload Qtk install directory
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: qtk-gui-${{ matrix.os }}-install
|
name: qtk-gui-${{ matrix.os }}-archive
|
||||||
path: install/*
|
path: install/*
|
||||||
|
|
||||||
# TODO: Enable after trimming resources.
|
# TODO: Enable after trimming resources.
|
||||||
@ -269,7 +269,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: libqtk-${{ matrix.os }}-install
|
name: libqtk-${{ matrix.os }}-archive
|
||||||
path: install/*
|
path: install/*
|
||||||
|
|
||||||
Qtk-Plugins:
|
Qtk-Plugins:
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -9,7 +9,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.event.workflow_run.head_branch, 'v')
|
||||||
steps:
|
steps:
|
||||||
- name: Download Installer Artifact
|
- name: Download Installer Artifact
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
@ -7,7 +7,7 @@ Qtk is a Qt OpenGL graphics library that wraps some QOpenGL functionality in con
|
|||||||
that allow rendering geometry in 2D and 3D using custom GLSL shader programs.
|
that allow rendering geometry in 2D and 3D using custom GLSL shader programs.
|
||||||
|
|
||||||
The Qtk desktop application provides a model loader using [Assimp](https://assimp.org/) within a Qt widget application.
|
The Qtk desktop application provides a model loader using [Assimp](https://assimp.org/) within a Qt widget application.
|
||||||
You can fly around the scene using WASD while holding down the right mouse button.
|
You can fly around the scene using WASD while holding down the left or right mouse button.
|
||||||
|
|
||||||
Object names can be double-clicked in the tree view panel for quick camera navigation.
|
Object names can be double-clicked in the tree view panel for quick camera navigation.
|
||||||
Properties of the object, like shader code and translation / scale, can be viewed and modified in the side panel.
|
Properties of the object, like shader code and translation / scale, can be viewed and modified in the side panel.
|
||||||
|
@ -36,6 +36,8 @@ install(
|
|||||||
RUNTIME DESTINATION bin
|
RUNTIME DESTINATION bin
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# TODO: Separate plugins source code to plugins/ dir and add_subdir here
|
||||||
|
|
||||||
# Qtk Application
|
# Qtk Application
|
||||||
if(QTK_GUI OR QTK_PLUGINS)
|
if(QTK_GUI OR QTK_PLUGINS)
|
||||||
add_subdirectory(app)
|
add_subdirectory(app)
|
||||||
|
@ -37,6 +37,7 @@ WidgetPluginCollection::WidgetPluginCollection(QObject * parent) :
|
|||||||
"Qtk::ToolBox",
|
"Qtk::ToolBox",
|
||||||
"toolbox.h",
|
"toolbox.h",
|
||||||
[](QWidget * parent) { return new Qtk::ToolBox(parent); }),
|
[](QWidget * parent) { return new Qtk::ToolBox(parent); }),
|
||||||
|
// TODO: Add and test DebugConsole, separate source code into plugins/ dir
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
Loading…
x
Reference in New Issue
Block a user