We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf9112 commit 492355fCopy full SHA for 492355f
.github/workflows/release.yml
@@ -4,6 +4,10 @@ on:
4
schedule:
5
- cron: '0 3 * * 1'
6
workflow_dispatch:
7
+ inputs:
8
+ next_release:
9
+ type: string
10
+ description: The version to release
11
12
jobs:
13
release:
@@ -13,6 +17,6 @@ jobs:
17
- uses: actions/checkout@v4
14
18
- run: git config user.email '[email protected]' && git config user.name 'Jakub Zalas'
15
19
- run: sudo apt-get update && sudo apt-get install -y hub
16
- - run: make auto-release
20
+ - run: make auto-release NEXT_RELEASE="${{ github.event.inputs.next_release }}"
21
env:
22
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
0 commit comments