Skip to content

Commit b57863f

Browse files
committed
feat: update for our unofficial green ember fan art.
1 parent 948ccd1 commit b57863f

File tree

15 files changed

+3818
-163
lines changed

15 files changed

+3818
-163
lines changed

.github/workflows/astro.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
name: Deploy to GitHub Pages
3+
4+
on:
5+
# Trigger the workflow every time you push to the `main` branch
6+
# Using a different branch name? Replace `main` with your branch’s name
7+
push:
8+
branches: [ main ]
9+
# Allows you to run this workflow manually from the Actions tab on GitHub.
10+
workflow_dispatch:
11+
12+
# Allow this job to clone the repo and create a page deployment
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout your repository using git
23+
uses: actions/checkout@v4
24+
- name: Install, build, and upload your site
25+
uses: withastro/action@v3
26+
# with:
27+
# path: . # The root location of your Astro project inside the repository. (optional)
28+
# node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
29+
# package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
30+
31+
deploy:
32+
needs: build
33+
runs-on: ubuntu-latest
34+
environment:
35+
name: github-pages
36+
url: ${{ steps.deployment.outputs.page_url }}
37+
steps:
38+
- name: Deploy to GitHub Pages
39+
id: deployment
40+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ pnpm-debug.log*
2323
# jetbrains setting folder
2424
.idea/
2525

26-
pnpm-lock.yaml
26+
# pnpm-lock.yaml

astro.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import tailwindcss from "@tailwindcss/vite";
44

55
// https://astro.build/config
66
export default defineConfig({
7+
site: 'https://unofficialgreenember.ktech.studio',
78
vite: {
89
plugins: [tailwindcss()],
910
},

0 commit comments

Comments
 (0)