From 65594a2d66bbd0688bc65846a2f15834d34362f3 Mon Sep 17 00:00:00 2001 From: Kevin Whitley Date: Sun, 14 Apr 2024 15:52:01 -0500 Subject: [PATCH] testing release action --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce4cd95..97aad4a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Prepare tag for release notes id: prep - run: echo "##[set-output name=tag;]$(echo ${GITHUB_REF#refs/tags/} | sed 's/\./ /g')" + run: echo "##[set-output name=tag;]$(echo ${GITHUB_REF#refs/tags/} | sed 's/v//; s/\./g')" - name: Create Release uses: actions/create-release@v1 @@ -24,6 +24,6 @@ jobs: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} body: | - See [v${{ steps.prep.outputs.tag }} CHANGELOG entry](https://github.com/kwhitley/itty-router/blob/v5.x/CHANGELOG.md#${{ steps.prep.outputs.tag }}) for notes + See **bold** [${{ github.ref }} CHANGELOG entry](https://github.com/kwhitley/itty-router/blob/v5.x/CHANGELOG.md#v${{ steps.prep.outputs.tag }}) for notes draft: false prerelease: false