Skip to content

Commit

Permalink
Create pages.yml
Browse files Browse the repository at this point in the history
https://github.com/CharacterRevolution/CharacterRevolution-Website/blob/main/.github/workflows/pages.yml

来自另一个hexo站

我说怎么deployment不工作了呢,原来是没有workflow文件,自然不会触发action

但是之前的也没有,我很好奇 @Ovler-Young 是怎么搞的
  • Loading branch information
LaoshuBaby authored Oct 24, 2023
1 parent 5042018 commit 77b0aad
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Pages

on:
push:
branches:
- hexo # default branch

jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Cache NPM dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.OS }}-npm-cache
restore-keys: |
${{ runner.OS }}-npm-cache
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: touch CNAME
run: echo "ccsn.dev" > ./public/CNAME
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./public
# publish_branch: main
# destination_dir: subdir

0 comments on commit 77b0aad

Please sign in to comment.