我有一个简单的github 存储库,用于托管我的简历内容。我使用 hackmyresume 生成 index.html。我正在使用 Github Actions 运行 npm 构建,它应该将生成的内容发布到 gh-pages 分支。
我的工作流程文件有
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Deploy with github-pages
uses: JamesIves/github-pages-deploy-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASE_BRANCH: master # The branch the action should deploy from.
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: target # The folder the action should deploy.
BUILD_SCRIPT: npm install && npm run-script build
构建命令是
"build": "hackmyresume BUILD ./src/main/resources/json/fresh/resume.json target/index.html -t compact",
我可以看到生成的 html 文件被提交到 github 分支
https://github.com/emeraldjava/emeraldjava/blob/gh-pages/index.html
但是 gh-page 没有选择这个?当我点击时出现 404 错误
https://emeraldjava.github.io/emeraldjava/
我相信我的回购设置和秘密是正确的,但我必须遗漏一些小东西。任何帮助,将不胜感激。