Skip to content

Commit

Permalink
🐳 chore: 更新action中node版本
Browse files Browse the repository at this point in the history
  • Loading branch information
GuoJikun committed Oct 7, 2023
1 parent 925512e commit 0901d05
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 41 deletions.
79 changes: 39 additions & 40 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,44 +10,43 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
strategy:
matrix:
node-version: [14.x]
npm-version: [7.x]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}


# Runs a single command using the runners shell
- name: 安装pnpm
run: npm i -g pnpm
- name: 安装依赖
run: pnpm i

- name: 打包
run: pnpm run build

- name: 配置git
run: git config --global user.email "[email protected]" && git config --global user.name "GuoJikun"

- name: build and deploy
env:
ACCESS_TOKEN: ${{ secrets.git_token }}
BRANCH: gh-pages
run: pnpm run build
- name: 部署文档到gh-pages
env:
ACCESS_TOKEN: ${{ secrets.git_token }}
run: cd dist && git config --global init.defaultBranch main && git init && git add -A && git commit -m "deploy" && git push -f https://[email protected]/guojikun/preview-image.git main:gh-pages
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
strategy:
matrix:
node-version: [16.x]
npm-version: [7.x]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

# Runs a single command using the runners shell
- name: 安装pnpm
run: npm i -g pnpm
- name: 安装依赖
run: pnpm i

- name: 打包
run: pnpm run build

- name: 配置git
run: git config --global user.email "[email protected]" && git config --global user.name "GuoJikun"

- name: build and deploy
env:
ACCESS_TOKEN: ${{ secrets.git_token }}
BRANCH: gh-pages
run: pnpm run build
- name: 部署文档到gh-pages
env:
ACCESS_TOKEN: ${{ secrets.git_token }}
run: cd dist && git config --global init.defaultBranch main && git init && git add -A && git commit -m "deploy" && git push -f https://[email protected]/guojikun/preview-image.git main:gh-pages
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 18.x
registry-url: https://registry.npmjs.org/
- run: npm i -g pnpm
- run: pnpm i
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
"format": "prettier --write src/",
"release": "release-it"
},
"engines": {
"node": ">=16.14.0"
},
"peerDependencies": {
"vue": "^3.3.4"
},
Expand Down

0 comments on commit 0901d05

Please sign in to comment.