You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Automate generating post thumbnail using [satori](https://github.com/vercel/satori) (since [v2.2.0](https://github.com/ansidev/leetcode-blog/releases/tag/v2.2.0)).
-[Astro PurgeCSS](https://github.com/codiume/orbit/tree/main/packages/astro-purgecss) - Remove unused CSS from build output.
13
14
- Automate releasing new versions using [GitHub Actions](https://github.com/features/actions) and following the [`git-flow`](https://nvie.com/posts/a-successful-git-branching-model/) branching model.
@@ -20,6 +21,7 @@ Solutions for LeetCode problems - Written by [ansidev](https://github.com/anside
|`GH_TOKEN`| GitHub Personal Access Token which has the `repo` scope. Click [here](https://github.com/settings/tokens/new?scopes=repo) to create a new one. |
60
-
|`NETLIFY_AUTH_TOKEN`| Netlify Authentication Token. Click [here](https://app.netlify.com/user/applications/personal) to create a new one. |
|`GH_TOKEN`| GitHub Personal Access Token which has the `repo` scope. Click [here](https://github.com/settings/tokens/new?scopes=repo) to create a new one. |
62
+
|`NETLIFY_AUTH_TOKEN`| Netlify Authentication Token. Click [here](https://app.netlify.com/user/applications/personal) to create a new one. |
61
63
|`NETLIFY_SITE_ID`| Netlify site ID. You can obtain it via UI or CLI.<br/><ul><li>UI: Go to https://app.netlify.com/sites/{netlify-site-name}/settings/general#site-details and click the copy button next to the site ID.</li><li>CLI: Run `netlify sites:list` and copy the site ID.</li></ul> |
62
64
63
65
## Project Structure
@@ -68,6 +70,9 @@ Inside of your Astro project, you'll see the following folders and files:
68
70
69
71
```
70
72
/
73
+
./
74
+
├── .astro
75
+
│ └── types.d.ts
71
76
├── .changes
72
77
│ ├── unreleased
73
78
│ │ └── .gitkeep
@@ -97,6 +102,7 @@ Inside of your Astro project, you'll see the following folders and files:
97
102
│ ├── task_dep.yaml
98
103
│ ├── task_git.yaml
99
104
│ ├── task_github.yaml
105
+
│ ├── task_leetcode.yaml
100
106
│ ├── task_release.yaml
101
107
│ └── task_site.yaml
102
108
├── .vscode
@@ -107,24 +113,73 @@ Inside of your Astro project, you'll see the following folders and files:
0 commit comments