Fix: update workflow for tag.
Minor: foo
This commit is contained in:
parent
95d13ab4b0
commit
cf03e445f4
3 changed files with 29 additions and 9 deletions
8
.github/workflows/build.yaml
vendored
8
.github/workflows/build.yaml
vendored
|
@ -1,12 +1,8 @@
|
||||||
name: Build RPMs
|
name: Build RPMs
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
tags:
|
||||||
types: [published]
|
- '1.*'
|
||||||
tags:
|
|
||||||
- '1.1*'
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE QtCreatorProject>
|
<!DOCTYPE QtCreatorProject>
|
||||||
<!-- Written by QtCreator 4.15.2, 2022-12-02T16:03:12. -->
|
<!-- Written by QtCreator 4.15.2, 2023-01-11T16:00:45. -->
|
||||||
<qtcreator>
|
<qtcreator>
|
||||||
<data>
|
<data>
|
||||||
<variable>EnvironmentId</variable>
|
<variable>EnvironmentId</variable>
|
||||||
|
@ -92,7 +92,7 @@
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">SailfishOS-4.4.0.58-aarch64 (in Sailfish SDK Build Engine)</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">SailfishOS-4.4.0.58-aarch64 (in Sailfish SDK Build Engine)</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">SailfishOS-4.4.0.58-aarch64 (in Sailfish SDK Build Engine)</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">SailfishOS-4.4.0.58-aarch64 (in Sailfish SDK Build Engine)</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">SailfishOS-4.4.0.58-aarch64.default</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">SailfishOS-4.4.0.58-aarch64.default</value>
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
|
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
||||||
|
|
|
@ -158,6 +158,18 @@ Page {
|
||||||
delegate: VisualContainer
|
delegate: VisualContainer
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
view.type = "timelines/tag/"+tlSearch.search.substring(1)
|
view.type = "timelines/tag/"+tlSearch.search.substring(1)
|
||||||
|
var ids = []
|
||||||
|
view.params = []
|
||||||
|
view.params.push({name: 'limit', data: "20" });
|
||||||
|
/* we push the ids via params which we remove in the WorkerScript
|
||||||
|
* see: MyList:loadData() and should move */
|
||||||
|
if (mdl.count) {
|
||||||
|
for(var i = 0 ; i < mdl.count ; i++) {
|
||||||
|
ids.push(mdl.get(i).id)
|
||||||
|
//if (debug) console.log(model.get(i).id)
|
||||||
|
}
|
||||||
|
view.params.push({name: 'ids', data: ids });
|
||||||
|
}
|
||||||
view.loadData("append")
|
view.loadData("append")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -229,8 +241,20 @@ Page {
|
||||||
|
|
||||||
delegate: VisualContainer
|
delegate: VisualContainer
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
|
var ids = []
|
||||||
|
view3.params = []
|
||||||
|
view3.params.push({name: 'limit', data: "20" });
|
||||||
|
/* we push the ids via params which we remove in the WorkerScript
|
||||||
|
* see: MyList:loadData() and should move */
|
||||||
|
if (mdl.count) {
|
||||||
|
for(var i = 0 ; i < mdl.count ; i++) {
|
||||||
|
ids.push(mdl.get(i).id)
|
||||||
|
//if (debug) console.log(model.get(i).id)
|
||||||
|
}
|
||||||
|
view3.params.push({name: 'ids', data: ids });
|
||||||
|
}
|
||||||
view3.type = "timelines/tag/"+tlSearch.search
|
view3.type = "timelines/tag/"+tlSearch.search
|
||||||
view3.loadData("append")
|
view3.loadData("prepend")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue