diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..29649a6 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,23 @@ +name: Release + +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 \ No newline at end of file