Skip to content

Add initial releases workflow #1

Add initial releases workflow

Add initial releases workflow #1

Workflow file for this run

name: Release

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

you may only define one of `tags` and `tags-ignore` for a single event
on:
push:
tags:
- '*'
tags-ignore:
- 'v1'
jobs:
create_release:
runs-on: ubuntu-latest
name: Create Release
steps:
- uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
draft: true
generateReleaseNotes: true