remove githubs "release on tag" action

This commit is contained in:
Franziska Kunsmann 2023-03-01 11:33:46 +01:00
parent 12864749f9
commit 3f7649b09a
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
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