From 5f8068f6f376f15d533ccf8c7f688864af803220 Mon Sep 17 00:00:00 2001 From: Oliver Lantwin Date: Thu, 18 Jun 2026 09:30:14 +0100 Subject: [PATCH] ci: use shared release workflow from ShipSoft/.github Replace inline release publishing with a call to the org-level reusable workflow. Behaviour is unchanged: a tag push regenerates release notes via git-cliff and publishes the GitHub Release. --- .github/workflows/release.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb30105..5f60cd8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,27 +10,6 @@ on: jobs: release: - runs-on: ubuntu-latest + uses: ShipSoft/.github/.github/workflows/release.yml@main permissions: contents: write - steps: - - name: Checkout - uses: actions/checkout@v6 - with: - fetch-depth: 0 - - - name: Generate release notes - id: cliff - uses: orhun/git-cliff-action@v4 - with: - config: cliff.toml - args: --latest --strip header --tag ${{ github.ref_name }} - - - name: Create GitHub Release - uses: softprops/action-gh-release@v3 - with: - tag_name: ${{ github.ref_name }} - name: ${{ github.ref_name }} - body_path: ${{ steps.cliff.outputs.changelog }} - draft: false - prerelease: false