mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-01-01 01:53:22 -05:00
20 lines
423 B
YAML
20 lines
423 B
YAML
|
name: Release
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- v[0-9]+.*
|
||
|
|
||
|
jobs:
|
||
|
create-release:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: taiki-e/create-gh-release-action@v1
|
||
|
with:
|
||
|
# (Optional) Path to changelog.
|
||
|
changelog: CHANGELOG.md
|
||
|
env:
|
||
|
# (Required) GitHub token for creating GitHub Releases.
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|