Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Drupal to use stable versions in composer.json and CI.
Browse files Browse the repository at this point in the history
AlexSkrypnyk committed Aug 7, 2024

Unverified

This user has not yet uploaded their public signing key.
1 parent 7494229 commit b14d1a4
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
@@ -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:
@@ -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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": {
@@ -36,7 +36,7 @@
"url": "https://asset-packagist.org"
}
],
"minimum-stability": "alpha",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"classmap": [

0 comments on commit b14d1a4

Please sign in to comment.