File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 with :
2525 php-version : ' 8.4'
2626
27+ - name : Configure Composer authentication
28+ run : |
29+ cat <<EOF > auth.json
30+ {
31+ "http-basic": {
32+ "nativephp.composer.sh": {
33+ "username": "${{ secrets.COMPOSER_NATIVEPHP_EMAIL }}",
34+ "password": "${{ secrets.COMPOSER_NATIVEPHP_AUTH_TOKEN }}"
35+ }
36+ }
37+ }
38+ EOF
39+
40+ - name : Debug auth.json
41+ run : cat auth.json
42+
2743 - name : Install Dependencies
2844 run : |
2945 composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Original file line number Diff line number Diff line change 3434 - name : Install Node Dependencies
3535 run : npm ci
3636
37+ - name : Configure Composer authentication
38+ run : |
39+ cat <<EOF > auth.json
40+ {
41+ "http-basic": {
42+ "nativephp.composer.sh": {
43+ "username": "${{ secrets.COMPOSER_NATIVEPHP_EMAIL }}",
44+ "password": "${{ secrets.COMPOSER_NATIVEPHP_AUTH_TOKEN }}"
45+ }
46+ }
47+ }
48+ EOF
49+
50+ - name : Debug auth.json
51+ run : cat auth.json
52+
3753 - name : Install Dependencies
3854 run : composer install --no-interaction --prefer-dist --optimize-autoloader
3955
You can’t perform that action at this time.
0 commit comments