Manual versioning #122
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Manual versioning | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| shopware_version: | |
| description: "Shopware version" | |
| required: true | |
| type: string | |
| php_version: | |
| description: "PHP version" | |
| required: false | |
| type: string | |
| default: "8.2" | |
| trigger_default_schema: | |
| description: "Trigger schema" | |
| required: false | |
| type: boolean | |
| default: true | |
| trigger_commercial_schema: | |
| description: "Trigger commercial schema" | |
| required: false | |
| type: boolean | |
| default: true | |
| trigger_digitalsalesroom_schema: | |
| description: "Trigger digitalsalesroom schema" | |
| required: false | |
| type: boolean | |
| default: true | |
| trigger_customproducts_schema: | |
| description: "Trigger custom products schema" | |
| required: false | |
| type: boolean | |
| default: true | |
| jobs: | |
| generate-trunk: | |
| if: ${{ inputs.trigger_default_schema }} | |
| uses: ./.github/workflows/base_schema.yml | |
| with: | |
| shopware_version: ${{ inputs.shopware_version }} | |
| php_version: ${{ inputs.php_version }} | |
| secrets: inherit | |
| generate-commercial-trunk: | |
| if: ${{ inputs.trigger_commercial_schema }} | |
| uses: ./.github/workflows/plugin_commercial_schema.yml | |
| with: | |
| shopware_version: ${{ inputs.shopware_version }} | |
| php_version: ${{ inputs.php_version }} | |
| secrets: inherit | |
| generate-digitalsalesroom-trunk: | |
| if: ${{ inputs.trigger_digitalsalesroom_schema }} | |
| uses: ./.github/workflows/plugin_digitalsalesroom_schema.yml | |
| with: | |
| shopware_version: ${{ inputs.shopware_version }} | |
| php_version: ${{ inputs.php_version }} | |
| secrets: inherit | |
| generate-customproducts-trunk: | |
| if: ${{ inputs.trigger_customproducts_schema }} | |
| uses: ./.github/workflows/plugin_customproducts_schema.yml | |
| with: | |
| shopware_version: ${{ inputs.shopware_version }} | |
| php_version: ${{ inputs.php_version }} | |
| secrets: inherit |