Skip to content

Commit

Permalink
[TEST] github release workflow with change notes
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed Aug 16, 2023
1 parent a5b7236 commit 85a7819
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ on:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
release:
name: Release pushed tag
runs-on: ubuntu-22.04
steps:
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
- uses: actions/checkout@v3
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" --generate-notes

0 comments on commit 85a7819

Please sign in to comment.