Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,23 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}

pnpm exec nx release ${{ github.event.inputs.version || '' }} --skip-publish --verbose --dryRun=${{ github.event.inputs.dryRun }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Sync main with release 📤
if: ${{ github.event.inputs.dryRun == 'false' }}
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

git fetch origin
git checkout main
git pull origin main
git merge origin/release --no-ff -m "chore: merge release into main"
git push origin main

- name: Build code 🛠
run: pnpm lib:build

Expand Down
2 changes: 1 addition & 1 deletion libs/flowbite-angular/tab/src/tab-list/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface FlowbiteTabListHostTheme {

export const flowbiteTabListTheme: FlowbiteTabListTheme = createTheme({
host: {
base: 'flex overflow-x-scroll overflow-y-clip border-b text-center',
base: 'flex overflow-x-auto overflow-y-clip border-b text-center',
transition: '',
color: {
default: {
Expand Down