diff --git a/.github/actions/get-next-version/action.yml b/.github/actions/get-next-version/action.yml index 1ebe0e6..7523d20 100644 --- a/.github/actions/get-next-version/action.yml +++ b/.github/actions/get-next-version/action.yml @@ -5,6 +5,9 @@ inputs: github_token: description: 'Github token' required: true + extra_plugins: + required: false + description: 'Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer.' outputs: last_release_version: @@ -29,5 +32,6 @@ runs: with: dry_run: true semantic_version: 24.2.3 + extra_plugins: ${{ inputs.extra_plugins }} env: GITHUB_TOKEN: ${{ inputs.github_token }} diff --git a/.github/actions/github-release/action.yml b/.github/actions/github-release/action.yml index 450dd2f..2b75bf9 100644 --- a/.github/actions/github-release/action.yml +++ b/.github/actions/github-release/action.yml @@ -5,6 +5,9 @@ inputs: github_token: description: 'Github token' required: true + extra_plugins: + required: false + description: 'Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer.' outputs: new_release_version: @@ -27,6 +30,7 @@ runs: GITHUB_TOKEN: ${{ inputs.github_token }} with: semantic_version: 24.2.3 + extra_plugins: ${{ inputs.extra_plugins }} - name: ⬆️ Update major tag uses: richardsimko/update-tag@v1.0.11 id: update-major-tag