Skip to content

Commit

Permalink
added automatic changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
mighty-sponge committed Feb 19, 2024
1 parent fd764bf commit e750942
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,20 @@ on:

name: release

permissions: write-all
permissions:
contents: write

jobs:
create_release:
name: create release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v4.1.1

- name: Create GH Release
uses: softprops/action-gh-release@v0.1.15
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
name: Release ${{ github.ref_name }}
generate_release_notes: true
draft: false
prerelease: false

0 comments on commit e750942

Please sign in to comment.