Skip to content

Commit

Permalink
Add option for php version.
Browse files Browse the repository at this point in the history
  • Loading branch information
JC5 committed Jan 8, 2025
1 parent b18f03f commit 81199f8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
description: 'Release "v1.2.3" or "develop"'
required: true
default: 'develop'
phpversion:
description: 'PHP version'
required: true
default: '8.4'
schedule:
- cron: '0 3 * * TUE'

Expand Down Expand Up @@ -36,7 +40,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: ${{ github.event.inputs.phpversion }}
extensions: mbstring, intl, zip, bcmath
- name: Cleanup changelog
id: cleanup-changelog
Expand Down

0 comments on commit 81199f8

Please sign in to comment.