Add CHANGELOG.md and GitHub Actions release workflow for v0.1.0

Co-authored-by: ds-sebastian <69488704+ds-sebastian@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-03 01:14:40 +00:00
co-authored by ds-sebastian
parent dcd4a969ee
commit f2f036d0ee
2 changed files with 103 additions and 0 deletions
+79
View File
@@ -0,0 +1,79 @@
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
version:
description: "Version to release (e.g. 0.1.0)"
required: true
default: "0.1.0"
permissions:
contents: write
jobs:
release:
name: Create GitHub Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Resolve tag name
id: tag
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "TAG=v${{ github.event.inputs.version }}" >> "$GITHUB_OUTPUT"
echo "VERSION=${{ github.event.inputs.version }}" >> "$GITHUB_OUTPUT"
else
TAG="${GITHUB_REF_NAME}"
echo "TAG=${TAG}" >> "$GITHUB_OUTPUT"
echo "VERSION=${TAG#v}" >> "$GITHUB_OUTPUT"
fi
- name: Create and push tag (workflow_dispatch only)
if: github.event_name == 'workflow_dispatch'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
TAG="${{ steps.tag.outputs.TAG }}"
if git rev-parse "$TAG" >/dev/null 2>&1; then
echo "Tag $TAG already exists, skipping creation."
else
git tag "$TAG"
git push origin "$TAG"
fi
- name: Extract changelog for this version
id: changelog
run: |
VERSION="${{ steps.tag.outputs.VERSION }}"
# Extract the section for this version from CHANGELOG.md
NOTES=$(awk "/^## \[$VERSION\]/{found=1; next} found && /^## \[/{exit} found{print}" CHANGELOG.md)
# Use a delimiter to safely pass multiline output
{
echo "NOTES<<CHANGELOG_EOF"
echo "$NOTES"
echo "CHANGELOG_EOF"
} >> "$GITHUB_OUTPUT"
- name: Create GitHub Release
uses: actions/github-script@v7
with:
script: |
const tag = '${{ steps.tag.outputs.TAG }}';
const notes = `${{ steps.changelog.outputs.NOTES }}`.trim();
await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: tag,
name: `Release ${tag}`,
body: notes || `Release ${tag}`,
draft: false,
prerelease: false,
});