Compare commits
16 Commits
fd29805fa1
...
v0
| Author | SHA1 | Date | |
|---|---|---|---|
| 369f740c1b | |||
|
c2999be2cd
|
|||
|
1c12062f12
|
|||
|
a38586f52c
|
|||
|
1239d67412
|
|||
|
a2a77a49b1
|
|||
| ff495030d4 | |||
|
bdb621da15
|
|||
|
2a2ad79bb4
|
|||
| ec51d271e3 | |||
|
656d08d74f
|
|||
| 93a3eb41fa | |||
|
72a343db93
|
|||
| 2ca581c65a | |||
|
fb60cee748
|
|||
| 169a1feb2e |
21
CHANGELOG.md
21
CHANGELOG.md
@@ -2,10 +2,29 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [unreleased]
|
## [0.2.3](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.2.2..v0.2.3) - 2025-12-13
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- *(changelog)* Normalize version hyphens to tildes in Debian changelog - ([a38586f](https://git.0xmax42.io/actions/deb-changelog-action/commit/a38586f52c48a830a8c8a5eda25a50eed40a782f))
|
||||||
|
|
||||||
|
## [0.2.1](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.2.0..v0.2.1) - 2025-12-13
|
||||||
|
|
||||||
|
### 🚜 Refactor
|
||||||
|
|
||||||
|
- *(help)* Improve help extraction for scripts - ([656d08d](https://git.0xmax42.io/actions/deb-changelog-action/commit/656d08d74f299d3c90aebfa67eac74f37662568f))
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- *(scripts)* Improve install script readability and error handling - ([2a2ad79](https://git.0xmax42.io/actions/deb-changelog-action/commit/2a2ad79bb4990c1f14324180275814a274376970))
|
||||||
|
|
||||||
|
## [0.2.0](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.1.1..v0.2.0) - 2025-07-02
|
||||||
|
|
||||||
### 📚 Documentation
|
### 📚 Documentation
|
||||||
|
|
||||||
|
- *(readme)* Update script reference in usage example - ([fb60cee](https://git.0xmax42.io/actions/deb-changelog-action/commit/fb60cee7482173db64f5946d493ac16d5ea6e57d))
|
||||||
|
- *(run.sh)* Update script documentation and help output - ([fd29805](https://git.0xmax42.io/actions/deb-changelog-action/commit/fd29805fa1c15310f234857362cdfaa0124051e5))
|
||||||
|
- *(script)* Improve help message layout and readability - ([b1644de](https://git.0xmax42.io/actions/deb-changelog-action/commit/b1644de411d789cb337ac250913a8aad2d53b40d))
|
||||||
- *(run.sh)* Clarify version reference in comments - ([f1b790d](https://git.0xmax42.io/actions/deb-changelog-action/commit/f1b790d4e3ae7d5b2d2300405f6bfdb6898dc8d2))
|
- *(run.sh)* Clarify version reference in comments - ([f1b790d](https://git.0xmax42.io/actions/deb-changelog-action/commit/f1b790d4e3ae7d5b2d2300405f6bfdb6898dc8d2))
|
||||||
|
|
||||||
## [0.1.1](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.1.0..v0.1.1) - 2025-06-27
|
## [0.1.1](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.1.0..v0.1.1) - 2025-06-27
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ This repository provides a one-liner to generate a Debian-style changelog using
|
|||||||
You can run the generator directly from the URL:
|
You can run the generator directly from the URL:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -s https://git.0xmax42.io/actions/deb-changelog-action/raw/branch/main/run.sh | bash -s -- \
|
curl -s https://git.0xmax42.io/actions/deb-changelog-action/raw/branch/main/bootstrap.sh | bash -s -- \
|
||||||
--tag v2.9.1 \
|
--tag v2.9.1 \
|
||||||
--package_name my-package \
|
--package_name my-package \
|
||||||
--author_name "John Doe" \
|
--author_name "John Doe" \
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#=== HELP START ===
|
||||||
# run.sh – local wrapper for the “deb-changelog-action”
|
# run.sh – local wrapper for the “deb-changelog-action”
|
||||||
#
|
#
|
||||||
# Behaviour:
|
# Behaviour:
|
||||||
@@ -32,6 +33,7 @@
|
|||||||
# (configs/cliff.debian.toml) is used.
|
# (configs/cliff.debian.toml) is used.
|
||||||
# • PACKAGE_NAME, AUTHOR_NAME, AUTHOR_EMAIL are exported so the TOML template
|
# • PACKAGE_NAME, AUTHOR_NAME, AUTHOR_EMAIL are exported so the TOML template
|
||||||
# can reference them (e.g. {{ get_env(name="PACKAGE_NAME") }}).
|
# can reference them (e.g. {{ get_env(name="PACKAGE_NAME") }}).
|
||||||
|
#=== HELP END ===
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
REPO_URL="https://git.0xmax42.io/actions/deb-changelog-action"
|
REPO_URL="https://git.0xmax42.io/actions/deb-changelog-action"
|
||||||
@@ -46,7 +48,14 @@ OUTPUT_FILE="debian/changelog"
|
|||||||
CLIFF_CONFIG=""
|
CLIFF_CONFIG=""
|
||||||
# ───────────────────────────────────────────────
|
# ───────────────────────────────────────────────
|
||||||
|
|
||||||
show_help() { sed -n '2,34p' "$0"; }
|
show_help() {
|
||||||
|
sed -n '/^#=== HELP START ===/,/^#=== HELP END ===/ {
|
||||||
|
/^#=== HELP START ===/d
|
||||||
|
/^#=== HELP END ===/d
|
||||||
|
s/^#//
|
||||||
|
p
|
||||||
|
}' "$0"
|
||||||
|
}
|
||||||
|
|
||||||
# 1 ─ Parse CLI options ─────────────────────────
|
# 1 ─ Parse CLI options ─────────────────────────
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[changelog]
|
[changelog]
|
||||||
body = """\
|
body = """\
|
||||||
{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
|
{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | replace(from="-", to="~") | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
|
||||||
{% for group, commits in commits | group_by(attribute="group") %}
|
{% for group, commits in commits | group_by(attribute="group") %}
|
||||||
* {{ group | striptags | trim | upper_first }}:\
|
* {{ group | striptags | trim | upper_first }}:\
|
||||||
{% for commit in commits %}
|
{% for commit in commits %}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#=== HELP START ===
|
||||||
# generate-changelog.sh – generates a Debian-style changelog via git-cliff
|
# generate-changelog.sh – generates a Debian-style changelog via git-cliff
|
||||||
#
|
#
|
||||||
# Usage:
|
# Usage:
|
||||||
@@ -16,6 +17,7 @@
|
|||||||
# • Checks that the config file exists and is readable.
|
# • Checks that the config file exists and is readable.
|
||||||
# • Ensures the parent directory of the output file exists (unless --debug).
|
# • Ensures the parent directory of the output file exists (unless --debug).
|
||||||
# • Generates the changelog; removes a leading empty line.
|
# • Generates the changelog; removes a leading empty line.
|
||||||
|
#=== HELP END ===
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
# ───────────────────────────────────────────────
|
# ───────────────────────────────────────────────
|
||||||
@@ -25,7 +27,14 @@ OUT_FILE=""
|
|||||||
DEBUG=false
|
DEBUG=false
|
||||||
# ───────────────────────────────────────────────
|
# ───────────────────────────────────────────────
|
||||||
|
|
||||||
show_help() { sed -n '2,18p' "$0"; }
|
show_help() {
|
||||||
|
sed -n '/^#=== HELP START ===/,/^#=== HELP END ===/ {
|
||||||
|
/^#=== HELP START ===/d
|
||||||
|
/^#=== HELP END ===/d
|
||||||
|
s/^#//
|
||||||
|
p
|
||||||
|
}' "$0"
|
||||||
|
}
|
||||||
|
|
||||||
# 1 Parse CLI options
|
# 1 Parse CLI options
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
#=== HELP START ===
|
||||||
# install-git-cliff.sh – Installs the git-cliff binary
|
# install-git-cliff.sh – Installs the git-cliff binary
|
||||||
|
|
||||||
# Usage:
|
# Usage:
|
||||||
@@ -22,6 +23,7 @@
|
|||||||
# aarch64-linux-gnu / musl / apple-darwin / pc-windows-msvc
|
# aarch64-linux-gnu / musl / apple-darwin / pc-windows-msvc
|
||||||
# i686-linux-gnu / musl / pc-windows-msvc
|
# i686-linux-gnu / musl / pc-windows-msvc
|
||||||
# x86_64-linux-gnu / musl / apple-darwin / pc-windows-*
|
# x86_64-linux-gnu / musl / apple-darwin / pc-windows-*
|
||||||
|
#=== HELP END ===
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
REPO="orhun/git-cliff"
|
REPO="orhun/git-cliff"
|
||||||
@@ -39,21 +41,47 @@ USER_VERSION_SPECIFIED=false
|
|||||||
# ───────────────────────────────────────────────
|
# ───────────────────────────────────────────────
|
||||||
|
|
||||||
# 0 Help function
|
# 0 Help function
|
||||||
show_help() { sed -n '2,24p' "$0"; }
|
show_help() {
|
||||||
|
sed -n '/^#=== HELP START ===/,/^#=== HELP END ===/ {
|
||||||
|
/^#=== HELP START ===/d
|
||||||
|
/^#=== HELP END ===/d
|
||||||
|
s/^#//
|
||||||
|
p
|
||||||
|
}' "$0"
|
||||||
|
}
|
||||||
|
|
||||||
# 1 Parse options (keeps old single-arg form)
|
# 1 Parse options (keeps old single-arg form)
|
||||||
POSITIONAL=()
|
POSITIONAL=()
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-h|--help) show_help; exit 0 ;;
|
-h | --help)
|
||||||
-n|--dry-run) DRY_RUN=true; shift ;;
|
show_help
|
||||||
-a|--arch)
|
exit 0
|
||||||
[[ $# -lt 2 ]] && { echo "❌ Option $1 requires an argument"; exit 1; }
|
;;
|
||||||
ARCH_OS_INPUT="$2"; shift 2 ;;
|
-n | --dry-run)
|
||||||
-d|--dir)
|
DRY_RUN=true
|
||||||
[[ $# -lt 2 ]] && { echo "❌ Option $1 requires an argument"; exit 1; }
|
shift
|
||||||
INSTALL_DIR="$2"; shift 2 ;;
|
;;
|
||||||
*) POSITIONAL+=("$1"); shift ;;
|
-a | --arch)
|
||||||
|
[[ $# -lt 2 ]] && {
|
||||||
|
echo "❌ Option $1 requires an argument"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
ARCH_OS_INPUT="$2"
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
-d | --dir)
|
||||||
|
[[ $# -lt 2 ]] && {
|
||||||
|
echo "❌ Option $1 requires an argument"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
INSTALL_DIR="$2"
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
POSITIONAL+=("$1")
|
||||||
|
shift
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
if [[ ${#POSITIONAL[@]} -gt 0 ]]; then
|
if [[ ${#POSITIONAL[@]} -gt 0 ]]; then
|
||||||
@@ -89,8 +117,16 @@ if command -v git-cliff >/dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# 4 Check for required tools
|
# 4 Check for required tools
|
||||||
need() { command -v "$1" >/dev/null || { echo "$1 is missing"; exit 1; }; }
|
need() { command -v "$1" >/dev/null || {
|
||||||
need curl; need tar; need grep; need sed; need awk; need jq
|
echo "$1 is missing"
|
||||||
|
exit 1
|
||||||
|
}; }
|
||||||
|
need curl
|
||||||
|
need tar
|
||||||
|
need grep
|
||||||
|
need sed
|
||||||
|
need awk
|
||||||
|
need jq
|
||||||
|
|
||||||
# 5 Determine version → Fetch release JSON
|
# 5 Determine version → Fetch release JSON
|
||||||
if [[ "$VERSION" == "latest" ]]; then
|
if [[ "$VERSION" == "latest" ]]; then
|
||||||
@@ -100,14 +136,23 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "🔍 Fetching release info ($API_URL)…"
|
echo "🔍 Fetching release info ($API_URL)…"
|
||||||
JSON=$(curl -fsSL "$API_URL") || { echo "❌ Failed to fetch release info"; exit 1; }
|
JSON=$(curl -fsSL "$API_URL") || {
|
||||||
|
echo "❌ Failed to fetch release info"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
VERSION=$(jq -r '.tag_name' <<< "$JSON") || { echo "❌ Could not extract version"; exit 1; }
|
VERSION=$(jq -r '.tag_name' <<<"$JSON") || {
|
||||||
|
echo "❌ Could not extract version"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
ASSET_URL=$(jq -r '.assets[]?.browser_download_url' <<< "$JSON" |
|
ASSET_URL=$(jq -r '.assets[]?.browser_download_url' <<<"$JSON" |
|
||||||
grep -E "${ARCH_OS}\.(tar\.(gz|xz)|zip)$" | head -n1)
|
grep -E "${ARCH_OS}\.(tar\.(gz|xz)|zip)$" | head -n1)
|
||||||
|
|
||||||
[[ -z "$ASSET_URL" ]] && { echo "❌ Matching asset not found for architecture ${ARCH_OS}"; exit 1; }
|
[[ -z "$ASSET_URL" ]] && {
|
||||||
|
echo "❌ Matching asset not found for architecture ${ARCH_OS}"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
ASSET_FILE=$(basename "$ASSET_URL")
|
ASSET_FILE=$(basename "$ASSET_URL")
|
||||||
echo "📦 Downloading git-cliff ${VERSION} (${ASSET_FILE}) …"
|
echo "📦 Downloading git-cliff ${VERSION} (${ASSET_FILE}) …"
|
||||||
@@ -116,21 +161,32 @@ curl -#L -o "${TMP}/${ASSET_FILE}" "$ASSET_URL"
|
|||||||
|
|
||||||
# 6 Extract based on file extension
|
# 6 Extract based on file extension
|
||||||
case "$ASSET_FILE" in
|
case "$ASSET_FILE" in
|
||||||
*.tar.gz|*.tgz) tar -C "$TMP" -xzf "${TMP}/${ASSET_FILE}" ;;
|
*.tar.gz | *.tgz) tar -C "$TMP" -xzf "${TMP}/${ASSET_FILE}" ;;
|
||||||
*.tar.xz) tar -C "$TMP" -xJf "${TMP}/${ASSET_FILE}" ;;
|
*.tar.xz) tar -C "$TMP" -xJf "${TMP}/${ASSET_FILE}" ;;
|
||||||
*.zip) need unzip; unzip -q "${TMP}/${ASSET_FILE}" -d "$TMP" ;;
|
*.zip)
|
||||||
*) echo "❌ Unknown archive format: $ASSET_FILE"; exit 1 ;;
|
need unzip
|
||||||
|
unzip -q "${TMP}/${ASSET_FILE}" -d "$TMP"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "❌ Unknown archive format: $ASSET_FILE"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# 7 Locate & (maybe) install binary
|
# 7 Locate & (maybe) install binary
|
||||||
BIN_PATH=$(find "$TMP" -type f -name git-cliff -perm -u+x | head -n1)
|
BIN_PATH=$(find "$TMP" -type f -name git-cliff -perm -u+x | head -n1)
|
||||||
[[ -z "$BIN_PATH" ]] && { echo "❌ Binary not found"; exit 1; }
|
[[ -z "$BIN_PATH" ]] && {
|
||||||
|
echo "❌ Binary not found"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
if $DRY_RUN; then
|
if $DRY_RUN; then
|
||||||
echo "🧪 Dry-run: verified git-cliff binary at ${BIN_PATH}"
|
echo "🧪 Dry-run: verified git-cliff binary at ${BIN_PATH}"
|
||||||
echo "ℹ️ Would install to: ${INSTALL_DIR}/git-cliff (sudo install -m755 …)"
|
echo "ℹ️ Would install to: ${INSTALL_DIR}/git-cliff (sudo install -m755 …)"
|
||||||
echo "✅ git-cliff $("$BIN_PATH" --version) would be installed successfully"
|
echo "✅ git-cliff $("$BIN_PATH" --version) would be installed successfully"
|
||||||
else
|
else
|
||||||
sudo install -m755 "$BIN_PATH" "${INSTALL_DIR}/git-cliff"
|
SUDO=""
|
||||||
|
[[ $EUID -eq 0 ]] || SUDO="sudo"
|
||||||
|
$SUDO install -m755 "$BIN_PATH" "${INSTALL_DIR}/git-cliff"
|
||||||
echo "✅ git-cliff $(git-cliff --version) installed in ${INSTALL_DIR}"
|
echo "✅ git-cliff $(git-cliff --version) installed in ${INSTALL_DIR}"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user