diff --git a/.github/workflows/generate-llms.yml b/.github/workflows/generate-llms.yml index 272ceba..f314d51 100644 --- a/.github/workflows/generate-llms.yml +++ b/.github/workflows/generate-llms.yml @@ -25,9 +25,9 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - - name: Copy staging env file + - name: Copy prod env file run: | - echo "${{ secrets.ENV_STAGING }}" | base64 -d > .env + echo "${{ secrets.ENV_PROD }}" | base64 -d > .env rm -f .env.local - name: Generate llms.txt diff --git a/src/pages/contributors.tsx b/src/pages/contributors.tsx index 4222f1b..994ea67 100644 --- a/src/pages/contributors.tsx +++ b/src/pages/contributors.tsx @@ -12,8 +12,6 @@ import SeoGenerator from '@components/SeoGenerator'; import ContributorsLayout from '@layouts/ContributorsLayout'; -import DownloadIcon from './../assets/icons/download.svg'; - const Contributors: FC = ({ contributors }) => { const router = useRouter(); const { locale } = router as TRouter; @@ -46,7 +44,6 @@ const Contributors: FC = ({ contributors }) => { createdDate={data.createdAt} modifiedDate={data.updatedAt} /> -