1
0
Fork 0

更新 .gitea/workflows/build.yaml

This commit is contained in:
cxykevin 2024-05-24 22:44:36 +08:00
parent 743796af01
commit f53ba43a66
1 changed files with 8 additions and 4 deletions

View File

@ -28,24 +28,28 @@ jobs:
git clone https://git.hmtsai.cn/cxykevin/study-area-home-action-deps git clone https://git.hmtsai.cn/cxykevin/study-area-home-action-deps
mv study-area-home-action-deps/node-$(uname -m).tar.xz study-area-home-action-deps/node.tar.xz mv study-area-home-action-deps/node-$(uname -m).tar.xz study-area-home-action-deps/node.tar.xz
tar xvJf study-area-home-action-deps/node.tar.xz tar xvJf study-area-home-action-deps/node.tar.xz
mv node-*-linux-* node mv node-*-linux-* /node
export PATH=./node/bin:$PATH:./node/bin export PATH=/node:$PATH
- name: Check node - name: Check node
run: | run: |
export PATH=/node:$PATH
ls study-area-home-action-deps ls study-area-home-action-deps
echo "------------" echo "------------"
ls . ls .
echo "------------" echo "------------"
./node/bin/node -v node -v
./node/bin/npm -v npm -v
- name: Prepare NPM source - name: Prepare NPM source
run: | run: |
export PATH=/node:$PATH
npm config set registry https://registry.npmmirror.com npm config set registry https://registry.npmmirror.com
- name: npm install - name: npm install
run: | run: |
export PATH=/node:$PATH
npm install npm install
- name: Build - name: Build
run: | run: |
export PATH=/node:$PATH
npm run build npm run build
# - name: Add permission # - name: Add permission
# run: chmod +x study-area-action-deps/mdbook-linux-$(uname -m) # run: chmod +x study-area-action-deps/mdbook-linux-$(uname -m)