Files
deb-changelog-action/README.md
Max P. fb60cee748
All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
docs(readme): update script reference in usage example
- Replaces the reference to `run.sh` with `bootstrap.sh` in the README
- Reflects the file rename for clarity and consistency
2025-07-02 13:56:48 +02:00

25 lines
688 B
Markdown

# Debian Changelog Generator
## External Usage
This repository provides a one-liner to generate a Debian-style changelog using `git-cliff`.
## Quick Usage
You can run the generator directly from the URL:
```bash
curl -s https://git.0xmax42.io/actions/deb-changelog-action/raw/branch/main/bootstrap.sh | bash -s -- \
--tag v2.9.1 \
--package_name my-package \
--author_name "John Doe" \
--author_email "john@example.com"
```
Optional arguments:
* `--output_file debian/changelog` (default)
* `--cliff_config path/to/custom.toml`
> ⚠️ This will clone the action to a temporary directory, install `git-cliff`, and write the changelog into your current working directory.