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 5a86922 commit 9830036Copy full SHA for 9830036
.github/workflows/ci-build.yml
@@ -1,13 +1,5 @@
1
name: CI Build
2
-on:
3
- push:
4
- pull_request:
5
- workflow_dispatch:
6
- inputs:
7
- type:
8
- description: 'Type'
9
- required: true
10
- default: 'update'
+on: [push, pull_request, workflow_dispatch]
11
jobs:
12
build-java:
13
strategy:
@@ -101,7 +93,7 @@ jobs:
101
93
path: ${{ matrix.expected }}
102
94
if-no-files-found: error
103
95
update-natives:
104
- if: github.event.inputs.type == 'update'
96
+ if: github.event_name == 'workflow_dispatch'
105
97
name: Update Natives
106
98
runs-on: ubuntu-20.04
107
99
needs: build-natives
@@ -113,8 +105,6 @@ jobs:
113
114
- name: Checkout Repository
115
uses: actions/checkout@v2
116
- with:
117
- token: ${{ secrets.GH_ACTIONS_REPO }}
118
108
119
109
- name: Move Natives
120
110
run: |
0 commit comments