mirror of
https://forgejo.ellis.link/continuwuation/continuwuity/
synced 2026-08-28 13:14:05 +00:00
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script is supposed to be run by cargo-release.
|
|
# It updates the changelog as necessary.
|
|
|
|
set -euo pipefail
|
|
cd $WORKSPACE_ROOT
|
|
|
|
towncrier build --name Continuwuity --version $NEW_VERSION --date "$(date -I)"
|
|
|
|
"`dirname $0`"/linkify-changelog.py
|