Skip to content

Commit

Permalink
CI: add deploy for PHP 8.3 and PHP exec
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Apr 16, 2024
1 parent 28a3c19 commit 70a7bce
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy-php-8.3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy php 8.3

on:
push:
paths:
- 'php-8.3/**'
branches:
- "master"

concurrency:
group: php-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
deploy:
name: Deploy
uses: ./.github/workflows/vercel.yml
secrets: inherit
with:
projectId: "prj_8Sr1ZZvQgIfYaChCekr4yv3byJnV"
projectPath: "php-8.3"
21 changes: 21 additions & 0 deletions .github/workflows/deploy-php-exec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy php exec

on:
push:
paths:
- 'php-exec/**'
branches:
- "master"

concurrency:
group: php-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
deploy:
name: Deploy
uses: ./.github/workflows/vercel.yml
secrets: inherit
with:
projectId: "prj_1twKaUwaHQHV0M3YfoLY626vwIaQ"
projectPath: "php-exec"

0 comments on commit 70a7bce

Please sign in to comment.