diff --git a/.github/workflows/stable.yaml b/.github/workflows/stable.yaml index 69dc157b..197d185d 100644 --- a/.github/workflows/stable.yaml +++ b/.github/workflows/stable.yaml @@ -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 diff --git a/layer/components/Accordion.vue b/layer/components/Accordion.vue index 966b1cf5..7d5653dd 100644 --- a/layer/components/Accordion.vue +++ b/layer/components/Accordion.vue @@ -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: '' } })