Skip to content

v2.6.0

v2.6.0 #4

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/release-action@v1.14.0
with:
tag: ${{ github.event.pull_request.title }}
name: ${{ github.event.pull_request.title }}
body: ${{ github.event.pull_request.body }}