Skip to content

Commit

Permalink
Updated Drupal to use stable versions in composer.json and CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Aug 8, 2024
1 parent 7494229 commit 4da610d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

matrix:
php-versions: ['8.3']
drupal-release: ['alpha', 'beta', 'dev']
drupal-release: ['stable', 'beta', 'dev']
composer-channel: ['stable', 'snapshot']

steps:
Expand Down Expand Up @@ -77,8 +77,6 @@ jobs:
composer --verbose require --no-update drupal/core-composer-scaffold:^11@${{ matrix.drupal-release }}
composer --verbose require --no-update drupal/core-recommended:^11@${{ matrix.drupal-release }}
composer --verbose require --no-update --dev drupal/core-dev:^11@${{ matrix.drupal-release }}
# Remove the line below once the package is out of `alpha`.
[[ ${{ matrix.drupal-release }} == 'beta' ]] && composer require chi-teck/drupal-code-generator:^4@alpha
composer --verbose update
- name: Install site
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"require": {
"composer/installers": "^2.1",
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "^11@alpha",
"drupal/core-recommended": "^11@alpha",
"drush/drush": "^13@beta",
"drupal/core-composer-scaffold": "^11",
"drupal/core-recommended": "^11",
"drush/drush": "^13",
"oomphinc/composer-installers-extender": "^2.0",
"vlucas/phpdotenv": "^5.1",
"webflo/drupal-finder": "^1.3"
},
"require-dev": {
"drupal/core-dev": "^11@alpha",
"drupal/core-dev": "^11",
"ergebnis/composer-normalize": "^2.42"
},
"conflict": {
Expand All @@ -36,7 +36,7 @@
"url": "https://asset-packagist.org"
}
],
"minimum-stability": "alpha",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"classmap": [
Expand Down

0 comments on commit 4da610d

Please sign in to comment.