Skip to content

Commit

Permalink
debug 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Einstein-Newton-666 committed Aug 20, 2024
1 parent 8265cfd commit 4e54b9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 53 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,3 @@
# name: Einstein-Newton-666's Blog CI/CD # 脚本 workflow 名称

# on:
# push:
# branches: [main, master] # 当监测 main,master 的 push
# paths: # 监测所有 source 目录下的文件变动,所有 yml,json 后缀文件的变动。
# - '*.json'
# - '**.yml'
# - '**/source/**'

# jobs:
# blog: # 任务名称
# timeout-minutes: 30 # 设置 30 分钟超时
# runs-on: ubuntu-latest # 指定最新 ubuntu 系统
# steps:
# - uses: actions/checkout@v2 # 拉取仓库代码
# - uses: actions/setup-node@v2 # 设置 node.js 环境
# - name: Cache node_modules # 缓存 node_modules,提高编译速度,毕竟每月只有 2000 分钟。
# uses: actions/cache@v2 # 亲测 Github 服务器编译速度比我自己电脑都快,如果每次构建按5分钟计算,我们每个月可以免费部署 400 次,Github yyds!!!
# env:
# cache-name: cache-node-modules
# with:
# path: ~/.npm
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-build-${{ env.cache-name }}-
# ${{ runner.os }}-build-
# ${{ runner.os }}-
# - name: Init Node.js # 安装源代码所需插件
# run: |
# npm install
# echo "init node successful"
# - name: Install Hexo-cli # 安装 Hexo
# run: |
# npm install -g hexo-cli --save
# echo "install hexo successful"
# - name: Build Blog # 编译创建静态博客文件
# run: |
# hexo clean
# hexo g
# echo "build blog successful"
# - name: Deploy DoubleAm's Blog # 设置 git 信息并推送静态博客文件
# run: |
# git config --global user.email "[email protected]"
# git config --global user.name "Einstein-Newton-666"

# hexo deploy

# - run: echo "Deploy Successful!"



name: Pages

on:
Expand Down
4 changes: 3 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ ignore:
# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: landscape
# theme: landscape
theme: redefine


# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
Expand Down

0 comments on commit 4e54b9e

Please sign in to comment.