Skip to content

Commit

Permalink
fix publish workflow, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vrepsys committed Dec 19, 2024
1 parent 06e51cc commit 4e3d6fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Build packages
run: pnpm build --filter './packages/*'

- name: Run tests
run: pnpm test:ci --filter='./packages/*'

- name: Publish
run: pnpm publish:rc

Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/components/navigation/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Logo } from './logo'

export const Footer = () => (
<div className="border-color-base text-color-lower fon-medium border-t">
<div className="border-color-base border-t">
<div className="mx-auto grid w-full max-w-[var(--site-width)] grid-cols-1 gap-4 px-[var(--site-padding-x)] py-16">
<div className="flex items-center gap-4 md:gap-1">
<Logo />{' '}
Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
}
}
}

0 comments on commit 4e3d6fe

Please sign in to comment.