diff --git a/.github/workflows/actions/publish-npm/action.yml b/.github/workflows/actions/publish-npm/action.yml index 4ed3ad1a..774d5289 100644 --- a/.github/workflows/actions/publish-npm/action.yml +++ b/.github/workflows/actions/publish-npm/action.yml @@ -3,8 +3,6 @@ description: 'Releases a package' inputs: scope: description: 'The package to release. Must match a package specified in lerna.json.' - version: - description: 'The type of version to release.' tag: description: 'The tag to publish to on NPM (DRY RUN).' preid: diff --git a/.github/workflows/prod-build.yml b/.github/workflows/prod-build.yml index 3a52c9cf..b9833fa0 100644 --- a/.github/workflows/prod-build.yml +++ b/.github/workflows/prod-build.yml @@ -11,18 +11,6 @@ on: - vue - angular - react - version: - required: true - type: choice - description: Which version should be published? - options: - - patch - - minor - - major - - prepatch - - preminor - - premajor - - prerelease tag: required: true type: choice @@ -65,7 +53,6 @@ jobs: - name: Publish Package uses: ./.github/workflows/actions/publish-npm with: - version: ${{ inputs.version }} # "patch", "minor", "major", "prepatch", "preminor", "premajor", "prerelease" tag: ${{ inputs.tag }} # "latest" or "next" preid: ${{ inputs.preid }} # Only needed when version is "prepatch", "preminor", "premajor", or "prerelease" scope: '@stencil/${{ inputs.package }}-output-target'