Skip to content

Commit 248fd73

Browse files
committed
ci(plugins): use common plugin-release action
1 parent ad115ee commit 248fd73

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Release Plugin
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
releaseVersion:
7+
description: "Release version (e.g. 1.2.0)"
8+
required: true
9+
nextVersion:
10+
description: "Next version (e.g. 1.3.0-SNAPSHOT)"
11+
required: false
12+
13+
permissions:
14+
contents: write
15+
actions: read
16+
17+
jobs:
18+
release:
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- name: Release plugin using reusable action
23+
uses: kestra-io/actions/actions/plugin-release@main
24+
with:
25+
releaseVersion: ${{ github.event.inputs.releaseVersion }}
26+
nextVersion: ${{ github.event.inputs.nextVersion }}

0 commit comments

Comments
 (0)