1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

This commit is contained in:
Shivam Mathur
2025-02-14 23:34:18 +00:00

23
.github/workflows/windows-builds.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Windows builds
run-name: Windows builds for ${{ inputs.tag || github.ref_name }}
on:
push:
tags:
- 'php-*'
workflow_dispatch:
inputs:
tag:
description: 'Tag version'
required: true
jobs:
publish:
runs-on: ubuntu-latest
name: Build
steps:
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.WINDOWS_BUILDS_TOKEN }}
run: |
TAG="${{ inputs.tag || github.ref_name }}"
gh workflow run php.yml -R php/php-windows-builder -f php-version="${TAG#php-}"