mirror of
https://github.com/veeso/termscp.git
synced 2026-06-11 11:09:27 +02:00
Single workflow_dispatch (version, dry_run) that bumps versions, regenerates CHANGELOG via git-cliff, rebuilds site CSS, builds all targets, creates the GitHub release, updates the Homebrew tap and publishes Chocolatey. - dist/release/bump_version.sh: version replacer across all tracked locations (+tests) - .github/workflows/release.yml: prepare -> build matrix -> homebrew/release -> choco - retire build-artifacts.yml (merged into release.yml) - Linux builds via cargo-zigbuild (old glibc) for broad compatibility
39 lines
1.9 KiB
Bash
Executable File
39 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Bump termscp version across all tracked locations.
|
|
# Usage: bump_version.sh <version> [date] [root]
|
|
set -euo pipefail
|
|
|
|
VERSION="${1:?usage: bump_version.sh <version> [date] [root]}"
|
|
DATE="${2:-$(date +%F)}"
|
|
ROOT="${3:-$(git rev-parse --show-toplevel)}"
|
|
|
|
# in-place sed that works on both GNU and BSD/macOS
|
|
sedi() { perl -0777 -pi -e "$1" "$2"; }
|
|
|
|
# Cargo.toml — only the top-level package version (line-anchored), not deps
|
|
sedi "s/^version = \"[0-9][0-9A-Za-z.\\-]*\"/version = \"$VERSION\"/m" "$ROOT/Cargo.toml"
|
|
|
|
# install.sh — the literal default assignment only
|
|
sedi "s/^TERMSCP_VERSION=\"[0-9][0-9A-Za-z.\\-]*\"/TERMSCP_VERSION=\"$VERSION\"/m" "$ROOT/install.sh"
|
|
|
|
# README.md — version + release date
|
|
sedi "s/Current version: [0-9][0-9A-Za-z.\\-]* [0-9]{4}-[0-9]{2}-[0-9]{2}/Current version: $VERSION $DATE/" "$ROOT/README.md"
|
|
|
|
# site: home.html + every lang json — "termscp X is NOW out"
|
|
sedi "s/termscp [0-9][0-9A-Za-z.\\-]* is NOW out/termscp $VERSION is NOW out/g" "$ROOT/site/html/home.html"
|
|
for f in "$ROOT"/site/lang/*.json; do
|
|
sedi "s/termscp [0-9][0-9A-Za-z.\\-]* is NOW out/termscp $VERSION is NOW out/g" "$f"
|
|
done
|
|
|
|
# site/get-started.html — nupkg + deb download URLs
|
|
sedi "s/termscp\\.[0-9][0-9A-Za-z.\\-]*\\.nupkg/termscp.$VERSION.nupkg/g" "$ROOT/site/html/get-started.html"
|
|
sedi "s/termscp_[0-9][0-9A-Za-z.\\-]*_amd64\\.deb/termscp_${VERSION}_amd64.deb/g" "$ROOT/site/html/get-started.html"
|
|
|
|
# chocolatey nuspec
|
|
sedi "s#<version>[0-9][0-9A-Za-z.\\-]*</version>#<version>$VERSION</version>#" "$ROOT/dist/chocolatey/termscp.nuspec"
|
|
|
|
# chocolatey install script — release tag + asset name in the URLs (checksums set later by CI)
|
|
sedi "s#releases/download/v[0-9][0-9A-Za-z.\\-]*/termscp-v[0-9][0-9A-Za-z.\\-]*-#releases/download/v$VERSION/termscp-v$VERSION-#g" "$ROOT/dist/chocolatey/tools/chocolateyinstall.ps1"
|
|
|
|
echo "Bumped to $VERSION ($DATE)"
|