Skip to content

Commit 7dd886d

Browse files
committed
Allow to provide the next release version when the release is triggered manually
1 parent e93d186 commit 7dd886d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
schedule:
55
- cron: '0 3 * * 1'
66
workflow_dispatch:
7+
inputs:
8+
next_release:
9+
type: string
10+
description: The version to release
711

812
jobs:
913
release:
@@ -16,3 +20,4 @@ jobs:
1620
- run: make auto-release
1721
env:
1822
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
23+
NEXT_RELEASE: ${{ github.event.inputs.next_release }}

0 commit comments

Comments
 (0)