Changeset 59220
- Timestamp:
- 10/12/2024 01:14:12 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-end-to-end-tests.yml
r59208 r59220 25 25 type: 'boolean' 26 26 default: true 27 gutenberg-version: 28 description: 'A specific version of Gutenberg to install.' 29 required: false 30 type: 'string' 27 31 28 32 env: … … 114 118 - name: Install Gutenberg 115 119 if: ${{ inputs.install-gutenberg }} 116 run: npm run env:cli -- plugin install gutenberg --path=/var/www/${{ env.LOCAL_DIR }}120 run: npm run env:cli -- plugin install gutenberg${{ inputs.gutenberg-version && format( ' --version={0}', inputs.gutenberg-version ) || '' }} --path=/var/www/${{ env.LOCAL_DIR }} 117 121 118 122 - name: Install additional languages
Note: See TracChangeset
for help on using the changeset viewer.