Astro 裡有許多部屬方式,因我們這次介紹是針對初學者架設,所以選擇了 github pages
開啟 astro.config.mjs
檔案。這個檔案用於設定你的 Astro 網站相關的設定。
import { defineConfig } from "astro/config";
export default defineConfig({
site: "https://<YOUR_USERNAME>.github.io", // 或是你的自訂域名
base: "/my-repo", // 如果需要的話,設定為你的專案名稱,開頭加上斜線
});
site
設定為你的GitHub Pages
網址,或是自訂域名。<YOUR_USERNAME>
.github.io 或使用了自訂域名,則不需要設定。如果需要設定,請將其設定為您的專案名稱,開頭加上斜線。在此專案中,建立一個名為.github/workflows
的資料夾,並在資料夾內建立一個名為deploy.yml
的檔案。
複製以下的內容貼到deploy.yml
檔案中:
name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install, build, and upload your site
uses: withastro/action@v0
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
此 YAML
文件描述了 GitHub Actions
的部署流程。它將在每次將變更推送到 main
分支時自動觸發部署,並且也可以在 GitHub 的 Actions
選項中手動運行。
GitHub
專案的Settings
(設定)選項。Pages
(頁面)部分,將Source
(來源)設定為GitHub Actions
。deploy.yml
到 GitHub
現在,當你將變更推送到你的 Astro
專案的儲存庫時,GitHub Actions
將自動為你部署網站。你的 Astro 網站現在可以通過以下網址訪問:
https://<YOUR_USERNAME>.github.io/my-repo
(根據你的設定)
如果你想要使用自訂域名,你可以按照以下步驟進行設定:
CNAME
的檔案,並將您的自訂域名寫入該檔案。<YOUR_USERNAME>
.github.io。今天,我們學到了:
astro.config.mjs
檔案,指定網站網址和基本路徑。GitHub Actions
部署流程,使您的網站自動部署。GitHub Pages
,以便使用 GitHub Actions
部署。希望這份教學能夠幫助你成功部署你的 Astro 網站到 GitHub Pages!