GitHub 如何部署写好的H5静态页面

感谢@粉皮zu的私信,又有素材写笔记了。(●'◡'●)

刚好记录一下我示例代码的GitHub部署配置,以便于后期追加仓库。

效果

环境

  • git
  • win

步骤

第一步 新建仓库
第二步 拉取代码

将仓库clone到本地

shell 复制代码
git clone 地址
第三步 部署文件

新建.github\workflows\static.yml文件

yml 复制代码
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
  # Runs on pushes targeting the default branch
  push:
    branches: ["main"]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
  contents: read
  pages: write
  id-token: write

# Allow one concurrent deployment
concurrency:
  group: "pages"
  cancel-in-progress: true

jobs:
  # Single deploy job since we're just deploying
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Setup Pages
        uses: actions/configure-pages@v2
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v1
        with:
          # Upload entire repository
          path: '.'
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v1
第四步 将写好的代码复制到根目录下

目录结构例如

运行测试这里推荐使用Visual Studio Code + Live Server测试代码很方便。

第五步 提交代码
shell 复制代码
git add .
git commit -m '第一次提交'
git push

然后就会发现部署失败了😅

第六步 设置仓库

然后将Action中错误的流水线重新运行

然后就就就...可以了...哈哈哈哈

成功之后这里会出现在线地址

地址

仓库 https://github.com/ToMeShare/H5.Examples

在线 https://tomeshare.github.io/H5.Examples/

相关推荐
ByteCraze31 分钟前
从零到一:构建一个实时语音翻译应用(Vue3 + Web Speech API)
前端·开源·github
修炼者2 小时前
如何让git识别不到你的文件
git·github
小猪佩奇TONY2 小时前
常用软件工具的使用(2) ---- git 命令进阶 和 github
git·github
这是个栗子3 小时前
git报错:Reinitialized existing Git repository in ...
前端·git·github
CoderJia程序员甲3 小时前
GitHub 热榜项目 - 日榜(2025-12-13)
ai·开源·大模型·github·ai教程
Nautiluss13 小时前
一起玩XVF3800麦克风阵列(八)
大数据·人工智能·嵌入式硬件·github·音频·语音识别
uhakadotcom17 小时前
Python Protobuf 全面教程:常用 API 串联与实战指南
前端·面试·github
周杰伦_Jay19 小时前
【GOFrame】模块化框架与生产级实践
开发语言·gitlab·github
托马斯-酷涛1 天前
加速GitHub加载速度-最终篇
github·proxy·代理
yuguo.im1 天前
5 分钟快速入门 Github Actions
ci/cd·github·actions