Skip to content

v2.5.2

v2.5.2 #3

Workflow file for this run

name: Release new version
on:
pull_request:
branches:
- main
types: closed
jobs:
release:
if: ${{ github.event.pull_request.merged }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Create Release
uses: ncipollo/[email protected]
with:
tag: ${{ github.event.pull_request.title }}
name: ${{ github.event.pull_request.title }}
body: ${{ github.event.pull_request.body }}