Browse Source

Allow manual build from any valid ref

Armin Schrenk 3 years ago
parent
commit
87f4a9ba5b
1 changed files with 12 additions and 1 deletions
  1. 12 1
      .github/workflows/build.yml

+ 12 - 1
.github/workflows/build.yml

@@ -1,7 +1,13 @@
 name: Build
 
 on:
-  [push, workflow_dispatch]
+  push:
+  workflow_dispatch:
+    inputs:
+      ref:
+        description: 'Reference which build is based on' #see actions/checkout for details
+        required: true
+        default: 'refs/heads/develop'
 
 env:
   JAVA_VERSION: 16
@@ -17,6 +23,11 @@ jobs:
     if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
     steps:
       - uses: actions/checkout@v2
+        if: github.event_name != 'workflow_dispatch'
+      - uses: actions/checkout@v2
+        with:
+          ref: ${{ github.event.inputs.ref }}
+        if: github.event_name == 'workflow_dispatch'
       - uses: actions/setup-java@v1
         with:
           java-version: ${{ env.JAVA_VERSION }}