Skip to content

Commit

Permalink
.github/workflows/main.yml: Forgot to quote JSON apparently.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ambient-Impact committed May 25, 2024
1 parent b8a6577 commit b06dc18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
# @see https://github.com/marketplace/actions/run-jq
- name: Read existing Drupal scaffold config from composer.json
id: drupal-scaffold-config
run: echo $(composer config extra.drupal-scaffold.file-mapping) >> $GITHUB_OUTPUT
run: echo '$(composer config extra.drupal-scaffold.file-mapping)' >> $GITHUB_OUTPUT

- name: Unset the .ht.router.php Drupal scaffold file mapping
uses: sergeysova/jq-action@v2
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Save updated Drupal scaffold file mapping for PHPUnit tests
run: |
composer config extra.drupal-scaffold.file-mapping --json \
${{ steps.drupal-scaffold-config-modified.outputs.value }}
'${{ steps.drupal-scaffold-config-modified.outputs.value }}'
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
Expand Down

0 comments on commit b06dc18

Please sign in to comment.