Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/call-auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Auto Release
on:
workflow_dispatch:
inputs:
version:
description: 'Release version (e.g., 1.0.0)'
type: string
required: true
name:
description: 'The name of the person to release the version'
type: string
required: false
email:
description: 'The email of the person to release the version'
type: string
required: false
timezone:
description: 'The timezone in the debian changelog file'
required: false
type: string
default: 'Asia/Shanghai'
workflow_call:
inputs:
version:
description: 'Release version (e.g., 1.0.0)'
type: string
required: true
name:
description: 'The name of the person to release the version'
type: string
required: false
email:
description: 'The email of the person to release the version'
type: string
required: false
timezone:
description: 'The timezone in the debian changelog file'
required: false
type: string
default: 'Asia/Shanghai'

jobs:
auto_release:
uses: linuxdeepin/.github/.github/workflows/auto-release.yml@master
secrets: inherit
with:
version: ${{ inputs.version }}
name: ${{ inputs.name }}
email: ${{ inputs.email }}
timezone: ${{ inputs.timezone }}
4 changes: 2 additions & 2 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Upstream-Contact: UnionTech Software Technology Co.,Ltd. <>
Source: https://github.com/linuxdeepin/qt5platform-plugins

# Config files
Files: .gitignore clog.toml .clog.toml .gitlab-ci.yml .project qt5platform-plugins.pro CHANGELOG.md misc/*.xml src/*.pri
Files: .gitignore clog.toml .clog.toml .gitlab-ci.yml .project qt5platform-plugins.pro CHANGELOG.md misc/*.xml src/*.pri VERSION
Copyright: None
License: CC0-1.0

Expand All @@ -19,7 +19,7 @@ Copyright: None
License: CC0-1.0

# ci
Files: .github/* .obs/workflows.yml linglong.yaml .syncexclude
Files: .github/* .obs/workflows.yml .syncexclude VERSION.in
Copyright: None
License: CC0-1.0

Expand Down
2 changes: 1 addition & 1 deletion .syncexclude
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# * .obs
# * .github
# are always ignored
linglong.yaml
VERSION
7 changes: 3 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@

cmake_minimum_required(VERSION 3.13)

set(DTK_VERSION
"5.6.8"
CACHE STRING "define project version"
)
file(READ "${CMAKE_CURRENT_SOURCE_DIR}/VERSION" DTK_FILE_VERSION)
string(STRIP "${DTK_FILE_VERSION}" DTK_FILE_VERSION)
set(DTK_VERSION "${DTK_FILE_VERSION}" CACHE STRING "define project version")

project(qt5platform-plugins
VERSION ${DTK_VERSION}
Expand Down
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5.7.16
1 change: 1 addition & 0 deletions VERSION.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@version@
28 changes: 0 additions & 28 deletions linglong.yaml

This file was deleted.