mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-21 18:41:01 +00:00
add github workflow for automatic releases
This commit is contained in:
parent
f18d59a368
commit
a4ef3f0da3
1 changed files with 19 additions and 0 deletions
19
.github/workflows/release-on-tag.yml
vendored
Normal file
19
.github/workflows/release-on-tag.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Create release when creating a tag
|
||||
on:
|
||||
create:
|
||||
tags:
|
||||
- '*'
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: create release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
draft: false
|
||||
prerelease: false
|
Loading…
Reference in a new issue