Skip to content

Commit 70a7bce

Browse files
committed
CI: add deploy for PHP 8.3 and PHP exec
1 parent 28a3c19 commit 70a7bce

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/workflows/deploy-php-8.3.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy php 8.3
2+
3+
on:
4+
push:
5+
paths:
6+
- 'php-8.3/**'
7+
branches:
8+
- "master"
9+
10+
concurrency:
11+
group: php-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
deploy:
16+
name: Deploy
17+
uses: ./.github/workflows/vercel.yml
18+
secrets: inherit
19+
with:
20+
projectId: "prj_8Sr1ZZvQgIfYaChCekr4yv3byJnV"
21+
projectPath: "php-8.3"

.github/workflows/deploy-php-exec.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy php exec
2+
3+
on:
4+
push:
5+
paths:
6+
- 'php-exec/**'
7+
branches:
8+
- "master"
9+
10+
concurrency:
11+
group: php-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
deploy:
16+
name: Deploy
17+
uses: ./.github/workflows/vercel.yml
18+
secrets: inherit
19+
with:
20+
projectId: "prj_1twKaUwaHQHV0M3YfoLY626vwIaQ"
21+
projectPath: "php-exec"

0 commit comments

Comments
 (0)