Open oizumi-photoclub opened 7 months ago
In the standard build of Astro, we introduce a method of publication using our own Github Action. Please try to follow these steps to see if you can publish it on Pages. If it still fails, could you show us the workflow file you used when building the project?
astro標準のビルドでは独自のGithubActionを用いた公開方法を紹介しています。 こちらの手順に従ってPagesに公開出来るか試してみてください。 それでも失敗した場合プロジェクトをビルドする際に使用しているワークフローファイルを見せて頂けますか?
I encountered a similar error when I was building.
At that time, the name of the repository set to base
was incorrect.
It might be related.
Same problem, using https://docs.astro.build/en/guides/deploy/github/#deploying-to-a-githubio-url Here's some ref for yall: https://stackoverflow.com/questions/77972098/github-jekyll-page-build-keeps-failing
I had the same issue. Luckily astro having their own configs for Github Actions. That helped me to resolve this issue and they are working as expected now.
@saicaca seems like this issue is fixed, could we close it?
I encountered the same problem too. I fixed this by changing my repository to another instead of username.github.io and changed the the base in astro.config.mjs, but I still don't understand why this problem happened.
I created a new repository from fuwari template and got an error during build. Here are the changes I made from the template: (lines 25 to 27 of astro.config.mjs) Change before: export default defineConfig({ site: "https://fuwari.vercel.app/", base: "/", After change: export default defineConfig({ site: "https://.github.io/",
base: "/",
The error is as follows.