Skip to content

Commit

Permalink
feat: 네이버 서치어드바이저 id 등록
Browse files Browse the repository at this point in the history
  • Loading branch information
wish-jang committed Feb 11, 2024
1 parent 5c1cb0a commit fa04c83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/gatsby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ jobs:
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
- name: Build with Gatsby
env:
PREFIX_PATHS: 'true'
PREFIX_PATHS: "true"
GA_TRACKING_ID: ${{secrets.GA_TRACKING_ID}}
NAVER_SITE_VERIFICATION_KEY: ${{secrets.NAVER_SITE_VERIFICATION_KEY}}
run: ${{ steps.detect-package-manager.outputs.manager }} run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
Expand Down
4 changes: 4 additions & 0 deletions src/components/Seo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ export const SEO = ({
/>
<meta name="robots" content="index, follow" />
<meta name="image" content={seo.image} />
<meta
name="naver-site-verification"
content={process.env.REACT_APP_NAVER_SITE_VERIFICATION_KEY}
/>
<meta property="og:title" content={seo.title} />
<meta property="twitter:title" content={seo.title} />
<meta property="og:description" content={seo.description} />
Expand Down

0 comments on commit fa04c83

Please sign in to comment.