Skip to content

Commit

Permalink
Version区切り文字を公式Caskと同じように@にする
Browse files Browse the repository at this point in the history
次のような利点が得られます:
- 後で公式Caskに移す時、摩擦を減らすことができる。
- ユーザーが公式Caskと同じ方式で使用できる。
  • Loading branch information
nix6839 committed Jun 5, 2024
1 parent b390608 commit b06871f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autobump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
# Required, custom GitHub access token with only the 'public_repo' scope enabled
token: ${{ secrets.BUMP_CASK_TOKEN }}
tap: VOICEVOX/voicevox
cask: voicevox, voicevox-dev, voicevox-preview
cask: voicevox, voicevox@dev, voicevox@preview
livecheck: true
dryrun: false
4 changes: 2 additions & 2 deletions Casks/voicevox.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
end

conflicts_with cask: [
"voicevox-dev",
"voicevox-preview",
"voicevox@dev",
"voicevox@preview",
]

app "VOICEVOX.app"
Expand Down
4 changes: 2 additions & 2 deletions Casks/voicevox-dev.rb → Casks/[email protected]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cask "voicevox-dev" do
cask "voicevox@dev" do
arch arm: "arm64", intel: "x64"
version "0.20.0-dev"
sha256 :no_check
Expand All @@ -16,7 +16,7 @@

conflicts_with cask: [
"voicevox",
"voicevox-preview",
"voicevox@preview",
]

app "VOICEVOX.app"
Expand Down
4 changes: 2 additions & 2 deletions Casks/voicevox-preview.rb → Casks/[email protected]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cask "voicevox-preview" do
cask "voicevox@preview" do
version "0.16.0-preview.1"
sha256 "14b48d4a3723fd9fc211e5c350f7563b56613ab981258038c3fda302acb17f0b"

Expand All @@ -15,7 +15,7 @@

conflicts_with cask: [
"voicevox",
"voicevox-dev",
"voicevox@dev",
]

app "VOICEVOX.app"
Expand Down
4 changes: 4 additions & 0 deletions cask_renames.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"voicevox-dev": "voicevox@dev",
"voicevox-preview": "voicevox@preview"
}

0 comments on commit b06871f

Please sign in to comment.