diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88def9f..ba27b6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -185,20 +185,20 @@ jobs: echo "" echo " on_macos do" echo " if Hardware::CPU.arm?" - echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v\#{version}/rutebayar-darwin-arm64\"" + echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v#{version}/rutebayar-darwin-arm64\"" echo " sha256 \"${darwin_arm64_sha}\"" echo " else" - echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v\#{version}/rutebayar-darwin-amd64\"" + echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v#{version}/rutebayar-darwin-amd64\"" echo " sha256 \"${darwin_amd64_sha}\"" echo " end" echo " end" echo "" echo " on_linux do" echo " if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?" - echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v\#{version}/rutebayar-linux-arm64\"" + echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v#{version}/rutebayar-linux-arm64\"" echo " sha256 \"${linux_arm64_sha}\"" echo " else" - echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v\#{version}/rutebayar-linux-amd64\"" + echo " url \"https://github.com/${GITHUB_REPOSITORY_NAME}/releases/download/v#{version}/rutebayar-linux-amd64\"" echo " sha256 \"${linux_amd64_sha}\"" echo " end" echo " end" diff --git a/CHANGELOG.md b/CHANGELOG.md index f7a3421..60b2fe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to Rute Bayar will be documented in this file. ## Unreleased +### Fixed + +- Keep generated Homebrew formula URLs interpolating `#{version}` correctly during release tap sync. + ## v0.1.11 - 2026-06-15 ### Added