We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7baaff9 commit 45f82d5Copy full SHA for 45f82d5
1 file changed
.github/workflows/pecl.yml
@@ -47,6 +47,12 @@ on:
47
test-runner-args:
48
description: 'Arguments for the test runner'
49
required: false
50
+ upload:
51
+ type: choice
52
+ options: ['true', 'false']
53
+ description: Upload artifacts to the downloads server
54
+ required: false
55
+ default: 'true'
56
jobs:
57
get-extension-matrix:
58
runs-on: ubuntu-latest
@@ -137,6 +143,7 @@ jobs:
137
143
upload:
138
144
139
145
needs: artifact
146
+ if: ${{ github.event.inputs.upload == 'true' }}
140
147
steps:
141
148
- name: Upload to downloads server
142
149
run: |
0 commit comments