Skip to content

Release Plugin

Release Plugin #1

Workflow file for this run

name: Release Plugin
on:
workflow_dispatch:
inputs:
releaseVersion:
description: "Release version (e.g. 1.2.0)"
required: true
nextVersion:
description: "Next version (e.g. 1.3.0-SNAPSHOT)"
required: false
kestraVersion:
description: "Kestra core version (e.g. 1.1.0)"
required: false
dryRun:
description: "If true, simulate the release without pushing or tagging"
required: false
default: "false"
permissions:
contents: write
actions: read
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Release plugin using reusable action
uses: kestra-io/actions/composite/plugin-release@main
with:
releaseVersion: ${{ github.event.inputs.releaseVersion }}
kestraVersion: ${{ github.event.inputs.kestraVersion }}
nextVersion: ${{ github.event.inputs.nextVersion }}
dryRun: ${{ github.event.inputs.dryRun }}
env:
GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }}