There was an error while loading. Please reload this page.
2 parents 5aaf7b4 + 3becfb1 commit e1f7209Copy full SHA for e1f7209
.github/workflows/windows-builds.yml
@@ -0,0 +1,23 @@
1
+name: Windows builds
2
+run-name: Windows builds for ${{ inputs.tag || github.ref_name }}
3
+on:
4
+ push:
5
+ tags:
6
+ - 'php-*'
7
+ workflow_dispatch:
8
+ inputs:
9
+ tag:
10
+ description: 'Tag version'
11
+ required: true
12
+
13
+jobs:
14
+ publish:
15
+ runs-on: ubuntu-latest
16
+ name: Build
17
+ steps:
18
+ - name: Build
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.WINDOWS_BUILDS_TOKEN }}
21
+ run: |
22
+ TAG="${{ inputs.tag || github.ref_name }}"
23
+ gh workflow run php.yml -R php/php-windows-builder -f php-version="${TAG#php-}"
0 commit comments