-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
43 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters