Files
vagrant-libvirt/.github/workflows/release.yml
Darragh Bailey aa826b2291 Switch to using github generated release notes (#1652)
To avoid constantly hitting too many API requests, switch to using
github release note generation for releases.
2022-11-02 19:35:43 +01:00

23 lines
506 B
YAML

name: release
on:
push:
tags:
- '*.*.*'
jobs:
publish-release:
name: Create Release
runs-on: ubuntu-latest
steps:
-
name: Create Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{ github.ref_name }}
target_commitish: ${{ github.event.repository.default_branch }}
generate_release_notes: true
tag_name: ${{ github.ref_name }}