mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
To avoid constantly hitting too many API requests, switch to using github release note generation for releases.
23 lines
506 B
YAML
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 }}
|