mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-16 08:56:04 +01:00
Attempt to fix handbook actions
clearly running cd prior to setting up node doesnt work
This commit is contained in:
7
.github/workflows/handbook.yml
vendored
7
.github/workflows/handbook.yml
vendored
@@ -36,8 +36,10 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-node-
|
${{ runner.os }}-node-
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
working-directory: src/handbook
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Run linter
|
- name: Run linter
|
||||||
|
working-directory: src/handbook
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
|
||||||
- run: git config --global user.name "github-actions"
|
- run: git config --global user.name "github-actions"
|
||||||
@@ -54,7 +56,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: cd src/handbook
|
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
@@ -69,9 +70,11 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-node-
|
${{ runner.os }}-node-
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
working-directory: src/handbook
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Build handbook
|
- name: Build handbook
|
||||||
run: npm run build
|
working-directory: src/handbook
|
||||||
|
run: cd src/handbook && npm run build
|
||||||
- name: Upload build
|
- name: Upload build
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user