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 ebc4b2c commit 5d44ff9Copy full SHA for 5d44ff9
1 file changed
.github/workflows/dev_build.yml
@@ -1,9 +1,21 @@
1
-name: Development Build
+name: Release
2
on: push
3
4
+on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ version:
8
+ description: 'Version number (e.g., 1.1.3)'
9
+ required: true
10
+ default: '1.1.3'
11
+ mc_version:
12
+ description: 'Minecraft number (e.g., 1.21.8)'
13
14
+ default: '1.21.8'
15
+
16
env:
- APP_VERSION: "1.1.2"
- MC: "1.21.8"
17
+ APP_VERSION: ${{ github.event.inputs.version }}
18
+ MC: ${{ github.event.inputs.mc_version }}
19
20
jobs:
21
build:
0 commit comments