Skip to content

Commit

Permalink
Merge branch 'cms-monorepo'
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiaz9 committed Mar 25, 2024
2 parents 37fd405 + 6cdb527 commit d8396bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
run: pnpm install

- name: Build site
run: pnpm build
run: pnpm build --filter web

- name: Cache build artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "**/dist"
key: build-artifacts-${{ github.sha }}
Expand All @@ -67,7 +67,7 @@ jobs:
uses: actions/checkout@v3

- name: Restore build artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "**/dist"
key: build-artifacts-${{ github.sha }}
Expand All @@ -78,7 +78,7 @@ jobs:
host: ${{ secrets.FTP_HOST }}
user: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
localDir: dist
localDir: apps/web/dist
remoteDir: ${{ secrets.FTP_REMOTE_DIR }}
options: "--delete -X cgi-bin/ -X .well-known/"

Expand All @@ -95,7 +95,7 @@ jobs:
uses: actions/checkout@v3

- name: Restore build artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "**/dist"
key: build-artifacts-${{ github.sha }}
Expand All @@ -104,7 +104,7 @@ jobs:
uses: Etherna/[email protected]
with:
gateway: https://gateway.etherna.io
localRoot: dist
localRoot: apps/web/dist
defaultPath: index.html
ethernaApiKey: ${{ secrets.ETHERNA_API_KEY }}
batchId: ${{ secrets.BATCH_ID }}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/blog/blog-post-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function BlogPostHeader({
{image && (
<div className="pointer-events-none absolute inset-0 overflow-hidden">
<Image
className="absolute inset-0 overflow-hidden bg-cover bg-center bg-no-repeat opacity-25 blur-lg"
className="absolute inset-0 w-full overflow-hidden bg-cover bg-center bg-no-repeat opacity-25 blur-lg"
data={image}
/>
</div>
Expand Down

0 comments on commit d8396bf

Please sign in to comment.