Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Monthly Release

on:
schedule:
# Run on the 1st of every month at 00:00 UTC
- cron: '0 0 1 * *'
workflow_dispatch:

permissions:
contents: write

jobs:
release:
name: Create monthly snapshot release
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0

- name: Generate release tag
id: tag
run: |
TAG="v$(date +'%Y.%m')"
echo "tag=${TAG}" >> $GITHUB_OUTPUT
echo "Release tag: ${TAG}"

- name: Generate release notes
id: notes
run: |
TAG="${{ steps.tag.outputs.tag }}"
PREVIOUS_TAG=$(git tag --sort=-version:refname | head -n1)

if [ -z "$PREVIOUS_TAG" ]; then
echo "First release - no previous tag found"
NOTES="Monthly snapshot release ${TAG}

This is an automated monthly snapshot of bluefin-common configuration files."
else
echo "Generating notes since ${PREVIOUS_TAG}"
NOTES="Monthly snapshot release ${TAG}

## Changes since ${PREVIOUS_TAG}

$(git log ${PREVIOUS_TAG}..HEAD --pretty=format:'- %s (%h)' --no-merges)

---
*This is an automated monthly snapshot of bluefin-common configuration files.*"
fi

echo "notes<<EOF" >> $GITHUB_OUTPUT
echo "$NOTES" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

- name: Create Release
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0
with:
tag: ${{ steps.tag.outputs.tag }}
name: ${{ steps.tag.outputs.tag }}
body: ${{ steps.notes.outputs.notes }}
draft: false
prerelease: false
makeLatest: true