From f1419195d1b522eae52f834661ebabdcd5f86780 Mon Sep 17 00:00:00 2001 From: irumaru Date: Tue, 24 Oct 2023 02:31:49 +0000 Subject: [PATCH] Add test deploy. --- .github/workflows/Astro-deploy.yml | 39 ++++++++++++++++++++++++++++++ astro.config.mjs | 4 ++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/Astro-deploy.yml diff --git a/.github/workflows/Astro-deploy.yml b/.github/workflows/Astro-deploy.yml new file mode 100644 index 0000000..d8c6dc5 --- /dev/null +++ b/.github/workflows/Astro-deploy.yml @@ -0,0 +1,39 @@ +name: Deploy to GitHub Pages + +on: + # `main` ブランチにプッシュするたびにワークフローを実行します + # 異なるブランチ名を使用する場合は、`main` をブランチ名に置き換えてください + push: + #branches: [ main ] + # このワークフローを GitHub の Actions タブから手動で実行できるようにします。 + 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@v1 + # with: + # path: . # リポジトリ内のAstroプロジェクトのルートロケーション。(オプション) + # node-version: 18 # サイト構築に使用するNodeのバージョン。デフォルトは18です。(オプション) + # package-manager: pnpm@latest # 依存関係のインストールとサイトのビルドに使用する Node パッケージマネージャ。ロックファイルに基づいて自動的に検出されます。(オプション) + + 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 \ No newline at end of file diff --git a/astro.config.mjs b/astro.config.mjs index 461bd30..9109388 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,5 +4,7 @@ import tailwind from "@astrojs/tailwind"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind()] + integrations: [tailwind()], + site: 'https://cit-nclab.github.io', + base: '/mo12-hp', }); \ No newline at end of file