Skip to content

Commit

Permalink
Merge pull request #472 from ergebnis/fix/rename
Browse files Browse the repository at this point in the history
Fix: Rename environment variable
  • Loading branch information
ergebnis-bot authored Jun 23, 2020
2 parents 589f2c9 + d0c6abe commit 4c9e35e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on: # yamllint disable-line rule:truthy

env:
COMPOSER_VERSION: "1.10.5"
REQUIRED_PHP_EXTENSIONS: "mbstring"
PHP_EXTENSIONS: "mbstring"

jobs:
release:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
extensions: "${{ env.PHP_EXTENSIONS }}"
ini-values: "phar.readonly=0"
php-version: "${{ matrix.php-version }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on: # yamllint disable-line rule:truthy
- cron: "1 0 1 1 *"

env:
REQUIRED_PHP_EXTENSIONS: "mbstring"
PHP_EXTENSIONS: "mbstring"

jobs:
license:
Expand All @@ -31,7 +31,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
extensions: "${{ env.PHP_EXTENSIONS }}"
php-version: "${{ matrix.php-version }}"

- name: "Validate composer.json and composer.lock"
Expand Down

0 comments on commit 4c9e35e

Please sign in to comment.