Skip to content

Commit

Permalink
use release-action to create release notes (#28)
Browse files Browse the repository at this point in the history
* create release notes

* use release-action
  • Loading branch information
bruce-szalwinski-he authored Sep 10, 2024
1 parent b3aafc0 commit d22d0ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 44 deletions.
25 changes: 0 additions & 25 deletions .github/release-drafter.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,10 @@ jobs:

# Release
- uses: rubygems/release-gem@v1

# Release Notes
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
name: 'v${{ github.ref_name }}'
token: ${{ github.token }}
18 changes: 0 additions & 18 deletions .github/workflows/release-drafter.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Pull requests are welcome!
```bash
git checkout main
git pull origin main
VERSION=$(grep -o 'VERSION = "[^"]*' lib/aws-msk-iam-sasl-signer/version.rb | grep -o '[^"]*$')
VERSION="v$(grep -o 'VERSION = "[^"]*' lib/aws-msk-iam-sasl-signer/version.rb | grep -o '[^"]*$')"
git tag -a ${VERSION} -m "${VERSION}"
git push origin ${VERSION}
```

0 comments on commit d22d0ec

Please sign in to comment.