Skip to content

Commit

Permalink
fix(ci): remove version from release input
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Dec 12, 2024
1 parent 25e07c2 commit 0d884b8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/actions/publish-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
13 changes: 0 additions & 13 deletions .github/workflows/prod-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 0d884b8

Please sign in to comment.