pretalx-plugin-broadcast-tools/.github/workflows/release-on-tag.yml

20 lines
472 B
YAML

name: Create release when creating a tag
on:
create:
tags:
- '[0-9].[0-9].[0-9]'
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