Skip to content

Commit

Permalink
build(ribir): 🎡 create only one tag per version
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Adoo committed Jun 28, 2023
1 parent 8889842 commit 1dc3ccf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/alpha-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: "0 2 * * 2" # runs every tuesday at 00:00
permissions:
contents: write
name: "release weekly alpha version"
jobs:
release:
Expand Down
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,7 @@ webbrowser = "0.8.8"
wgpu = {version = "0.16.0"}
winit = {version = "0.28.5", default-features = false, features = ["x11", "wayland", "wayland-dlopen"]}
zerocopy = "0.7.0-alpha.3"

[workspace.metadata.release]
shared-version = true
tag = false
13 changes: 8 additions & 5 deletions ribir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ repository = "https://github.com/RibirX/Ribir/ribir"
version.workspace = true

[dependencies]
arboard = "3.2.0"
once_cell.workspace = true
ribir_core = {path = "../core", version = "0.0.1-alpha.2" }
ribir_gpu = {path = "../gpu", version = "0.0.1-alpha.2" }
ribir_core = {path = "../core", version = "0.0.1-alpha.2"}
ribir_gpu = {path = "../gpu", version = "0.0.1-alpha.2"}
ribir_material = {path = "../themes/material", version = "0.0.1-alpha.2", optional = true}
ribir_widgets = {path = "../widgets", version = "0.0.1-alpha.2", optional = true}
rxrust.workspace = true
wgpu = {workspace = true, optional = true}
winit.workspace = true
arboard = "3.2.0"

[dev-dependencies]
colored.workspace = true
env_logger.workspace = true
futures.workspace = true
ribir_dev_helper = {path = "../dev-helper", version = "0.0.1-alpha.2" }
ribir_material = {path = "../themes/material", version = "0.0.1-alpha.2" }
ribir_dev_helper = {path = "../dev-helper"}
ribir_material = {path = "../themes/material"}

[features]
default = ["wgpu", "widgets", "material"]
Expand All @@ -44,3 +44,6 @@ path = "tests/timer_test.rs"

[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"

[package.metadata.release]
tag = true

0 comments on commit 1dc3ccf

Please sign in to comment.