Skip to content

Commit 853411a

Browse files
authored
Create php8.3.2.yml
1 parent b19f363 commit 853411a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/php8.3.2.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build PHP 8.3.2
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
php:
7+
strategy:
8+
matrix:
9+
arch: x64
10+
ts: nts
11+
runs-on: windows-2019
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Build
16+
uses: ./php
17+
with:
18+
php-version: ${{ github.event.inputs.php-version }}
19+
arch: ${{ matrix.arch }}
20+
ts: ${{ matrix.ts }}
21+
22+
release:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Upload artifact to the release
26+
uses: php/php-windows-builder/release@v1
27+
with:
28+
release: 8.3.2
29+
token: ${{ secrets.PHP_TOKEN }}

0 commit comments

Comments
 (0)