完成后只要通过访问 https://username.github.io 即可访问自己的网站啦 补充一个bug的处理,如果在local环境下部署渲染正常,但是到Github Page Deploy时发现无法正常渲染(CSS)出现问题的话。要注意使用hugo命令而不是hugo server -D生成public文件夹!!! 5. 结语 本文主要以记录回顾和分享为主,由于个人没有前端开发...
- name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v3 等待workflow build成功,再次点击 Settings->Pages进入GitHub Pages,可以看到网站的URL,URL是由github用户名以及当前所在项目名称组成的:https://<github username>.http://github.io/<project name>/ 在浏览器输入该URL,就可以访问网...
- name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2 完成上述操作后,在某个文件夹中运行 Git Bash 并执行下列指令: git clone https://github.com/Luckyblock233/Luckyblock233.github.io Luckyblock233.github.io,表示将仓库内容克隆到本地文件夹Luckyblock233.github.io中。这一部...
e.g. benmatselby/benmatselby.github.io. Example name: Push to GitHub Pages on push to main on: push: branches: - main jobs: build: name: Deploy runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v1 - name: Deploy the site uses: benmatselby/hugo-deploy-...
github-pages.yml 181 workflow runs Event Status Branch Actor Merge pull request #373 from haubourg/webp_biggest_images 🛫 Deploy Hugo site to Pages #239: Commit 6f24c3d pushed by timlinux main August 1, 2024 13:21 4m 55s Merge pull request #385 from Xpirix/sustaining_members...
最后一步,配置 Github 自动构建发布 Actions 即可: 可以通过 Github 自动为我们仓库生成,注意是为JaredTan95.github.io.source仓库配置 Actions。 Actions 直接将以下文件贴进去,修改远程仓库即可,其他的基本上不用更新: 代码语言:javascript 复制 name:Deploy Hugo Site to Github Pages on Master Branchon:push:bran...
使用hugo生成静态博客并部署在GitHub上 简介 hugo是一个用Go语言编写的静态网页生成器,只需要一个命令hugo就可以在几秒钟内生成一个静态的博客页面,被称为世界上最快的网站构建框架,使hugo称为最受欢迎且最热门的静态网站生成器之一。 我之前使用的是wordpress作为博客的载体,但是wordpress太笨重,对markdown格式的...
name: GitHub Pages on: push: branches: - main # Set a branch name to trigger deployment pull_request: jobs: deploy: runs-on: ubuntu-latest permissions: contents: write steps: - uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) ...
通过参考众多优秀的个人站点,我最终选择以 Github Pages + Hugo 的方式来搭建属于自己的个人网站。 Hugo:由 Go 语言实现的静态网站生成器,简单、易用、高效、易扩展、快速部署。只需在本地编写 markdown 文件,即可完成日常文章的维护。 Github Pages:是一个静态站点托管服务,直接将个人、组织或项目的页面托管于 G...
利用Github Actions实现将站点源文件(如:hugo-site-demo)自动化部署到 GitHub Pages (如:xcbeyond.github.io )上。 创建Github Actions 文件。 在站点源文件根目录,创建.github/workflows/deploy.yml文件: # This is a basic workflow to help you get started with Actions ...