mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-12-18 14:06:30 +00:00
release: update release version fetcher
This commit is contained in:
parent
98d6451e74
commit
2787211f0d
4 changed files with 3 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -526,7 +526,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gst_pipeline_studio"
|
name = "gst_pipeline_studio"
|
||||||
version = "0.3.2"
|
version = "0.3.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"futures-channel",
|
"futures-channel",
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
- cargo.toml
|
- cargo.toml
|
||||||
- VERSION
|
- VERSION
|
||||||
- index.html
|
- index.html
|
||||||
|
- And rebuild to regenerate the cargo.lock
|
||||||
|
|
||||||
- create a tag on gitlab
|
- create a tag on gitlab
|
||||||
- Fetch the package from the `linux release` job or you can make it manually with:
|
- Fetch the package from the `linux release` job or you can make it manually with:
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
pub static APP_ID: &str = @APP_ID@;
|
pub static APP_ID: &str = @APP_ID@;
|
||||||
pub static VERSION: &str = @VERSION@;
|
pub static VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
conf = configuration_data()
|
conf = configuration_data()
|
||||||
conf.set_quoted('APP_ID', application_id)
|
conf.set_quoted('APP_ID', application_id)
|
||||||
conf.set_quoted('VERSION', version + version_suffix)
|
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
input: 'config.rs.in',
|
input: 'config.rs.in',
|
||||||
|
|
Loading…
Reference in a new issue