Skip to content

Commit

Permalink
Showing 2 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/stable.yaml
Original file line number Diff line number Diff line change
@@ -9,6 +9,13 @@ jobs:
publish:
runs-on: ubuntu-latest

permissions:
deployments: write
contents: write
statuses: write
actions: write
checks: read

steps:
- name: 'Checkout' # Download code from the repository
uses: actions/checkout@v2 # Public action
@@ -41,5 +48,5 @@ jobs:
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
lerna version patch --force-git-tag --yes
lerna version prerelease --force-git-tag --no-changelog --yes
lerna publish from-git --force-git-tag --dist-tag latest --yes --summary-file
10 changes: 5 additions & 5 deletions layer/components/Accordion.vue
Original file line number Diff line number Diff line change
@@ -2,18 +2,18 @@
import { computed } from 'vue'
const props = defineProps({
modelValue: {
type: [String, Number],
activeClass: {
type: String,
default: ''
},
value: {
modelValue: {
type: [String, Number],
default: ''
},
activeClass: {
type: String,
value: {
type: [String, Number],
default: ''
}
})

0 comments on commit b8f2c72

Please sign in to comment.