From 7ec94df01396e2747abf25c7ff2242025549b17a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:10:21 +0000 Subject: [PATCH 01/17] chore: add release CI --- .../release-and-update-changelog.yml | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/release-and-update-changelog.yml diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml new file mode 100644 index 0000000..8ce393f --- /dev/null +++ b/.github/workflows/release-and-update-changelog.yml @@ -0,0 +1,59 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch +# push: +# branches: [ "main" ] +# pull_request: +# branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# 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" + release-and-update-changelog: + # The type of runner that the job will run on + runs-on: [ self-hosted ] + name: Update the change log and generate a new tag for release + + strategy: + matrix: + node-version: [18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + with: + submodules: true + - uses: pnpm/action-setup@v2 + name: Install pnpm + id: pnpm-install + with: + version: 7 + run_install: false + + - name: Get pnpm store directory + id: pnpm-cache + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT + - uses: actions/cache@v3 + name: Setup pnpm cache + with: + path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: pnpm install + + - name: update the changelog and add a new tag + run: pnpm release:changelog From 6af6703232e036c0287dbd9ceb862e403a5e58ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:11:11 +0000 Subject: [PATCH 02/17] fix: rename CI --- .github/workflows/release-and-update-changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index 8ce393f..7db649a 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: CI +name: Release CI # Controls when the workflow will run on: From b07be60fd297ca803462d737a870a9a776c952cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:24:26 +0000 Subject: [PATCH 03/17] chore: add specific version for release CI --- .github/workflows/release-and-update-changelog.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index 7db649a..f76bd0d 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -12,6 +12,10 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: + inputs: + release_version: + required: false + type: string # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -56,4 +60,10 @@ jobs: run: pnpm install - name: update the changelog and add a new tag + if: (${{ inputs.deploy_version }} == "") run: pnpm release:changelog + + - name: update the changelog and add a specific tag + if: (${{ inputs.deploy_version }} != "") + run: pnpm release:changelog --release-as ${{ inputs.deploy_version }} + From afce9d5a93afc7ac2f70db158085b2835737d8b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:29:39 +0000 Subject: [PATCH 04/17] fix: add node setup --- .github/workflows/release-and-update-changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index f76bd0d..db02bda 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -36,6 +36,12 @@ jobs: - uses: actions/checkout@v3 with: submodules: true + + - uses: actions/setup-node@v3 + name: Use Node.js ${{ matrix.node-version }} + with: + node-version: ${{ matrix.node-version }} + - uses: pnpm/action-setup@v2 name: Install pnpm id: pnpm-install From 86c6c624e010d665a7cad54e0c848002b5bb4b1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:32:09 +0000 Subject: [PATCH 05/17] Update release-and-update-changelog.yml --- .github/workflows/release-and-update-changelog.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index db02bda..4ccb591 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -66,10 +66,10 @@ jobs: run: pnpm install - name: update the changelog and add a new tag - if: (${{ inputs.deploy_version }} == "") + if: ${{ (${{ inputs.deploy_version }} == "") }} run: pnpm release:changelog - name: update the changelog and add a specific tag - if: (${{ inputs.deploy_version }} != "") + if: ${{ (${{ inputs.deploy_version }} != "") }} run: pnpm release:changelog --release-as ${{ inputs.deploy_version }} From 21e2b789c74890821b77c9b9d11a08263a5fcb2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:33:39 +0000 Subject: [PATCH 06/17] Update release-and-update-changelog.yml --- .github/workflows/release-and-update-changelog.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index 4ccb591..f65a22e 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -66,10 +66,10 @@ jobs: run: pnpm install - name: update the changelog and add a new tag - if: ${{ (${{ inputs.deploy_version }} == "") }} + if: ${{ inputs.deploy_version }} == '' run: pnpm release:changelog - name: update the changelog and add a specific tag - if: ${{ (${{ inputs.deploy_version }} != "") }} + if: ${{ inputs.deploy_version }} != '' run: pnpm release:changelog --release-as ${{ inputs.deploy_version }} From 29fc181a109bfdc4e88b64033c236156ad2a37cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:40:59 +0000 Subject: [PATCH 07/17] Update release-and-update-changelog.yml --- .github/workflows/release-and-update-changelog.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index f65a22e..e73fda8 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -65,6 +65,14 @@ jobs: - name: Install dependencies run: pnpm install + - uses: oleksiyrudenko/gha-git-credentials@v2-latest + with: + global: true + name: ${{ github.actor }} + email: ${{ github.actor }}@vtb.link + actor: ${{ github.actor }} + token: ${{ secrets.GITHUB_TOKEN }} + - name: update the changelog and add a new tag if: ${{ inputs.deploy_version }} == '' run: pnpm release:changelog From 5778e7eb8e063b8364b4a5bf27b1fbaff415bd0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:44:18 +0000 Subject: [PATCH 08/17] Update release-and-update-changelog.yml --- .github/workflows/release-and-update-changelog.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index e73fda8..5709c16 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -17,6 +17,9 @@ on: required: false type: string +env: + RELEASE_VERSION: ${{ inputs.deploy_version }} + # 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" @@ -74,10 +77,10 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: update the changelog and add a new tag - if: ${{ inputs.deploy_version }} == '' + if: (${{ env.RELEASE_VERSION }} == '') run: pnpm release:changelog - name: update the changelog and add a specific tag - if: ${{ inputs.deploy_version }} != '' + if: (${{ env.RELEASE_VERSION }} != '') run: pnpm release:changelog --release-as ${{ inputs.deploy_version }} From 196ab00292392402396564ee726b95b2e0246c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:45:26 +0000 Subject: [PATCH 09/17] Update release-and-update-changelog.yml --- .github/workflows/release-and-update-changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index 5709c16..18518d2 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -82,5 +82,5 @@ jobs: - name: update the changelog and add a specific tag if: (${{ env.RELEASE_VERSION }} != '') - run: pnpm release:changelog --release-as ${{ inputs.deploy_version }} + run: pnpm release:changelog --release-as ${{ env.RELEASE_VERSION }} From 569602942b4f0c847a422068a374d3dab34d119e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:57:08 +0000 Subject: [PATCH 10/17] chore(release): 1.0.1 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cee00b..35160ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,40 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.0.1](https://vlink.dev/EOEFANS/eoefans-web/compare/v1.0.0...v1.0.1) (2023-03-05) + + +### ♻ Code Refactoring + +* **custom**: 用户点击多次tag栏之后将只会搜索最后一次结果 ([7572267](https://vlink.dev/EOEFANS/eoefans-web/commits/7572267)), closes [#33](https://vlink.dev/EOEFANS/eoefans-web/issues/33) + + +### ⚡ Performance Improvements + +* **custom**: 提取公共组件和hooks ([7ef3f13](https://vlink.dev/EOEFANS/eoefans-web/commits/7ef3f13)) + + +### ✨ Features + +* **custom**: pc端搜索提供搜索建议,但是并不完善,up列表需要更新 ([6911c57](https://vlink.dev/EOEFANS/eoefans-web/commits/6911c57)) + + +### 🐛 Bug Fixes + +* **custom**: 添加seo优化 ([4a02535](https://vlink.dev/EOEFANS/eoefans-web/commits/4a02535)) +* **custom**: 修复选择栏在手机端过窄的问题 ([73e6949](https://vlink.dev/EOEFANS/eoefans-web/commits/73e6949)) +* **custom**: 修复tab栏在搜索页面出现的bug,修改图片页tag栏默认顺序,增加当前页提示 ([aec33cc](https://vlink.dev/EOEFANS/eoefans-web/commits/aec33cc)) +* **custom**: 修复tag栏在手机端出现两次的bug ([5a66368](https://vlink.dev/EOEFANS/eoefans-web/commits/5a66368)) + + +### 💄 Styles + +* **custom**: 删除消息线 ([e3e88d2](https://vlink.dev/EOEFANS/eoefans-web/commits/e3e88d2)) +* **custom**: 修改中部栏,将导航栏收缩至蛞蝓右边,header栏右边将承载更多内容 ([e844579](https://vlink.dev/EOEFANS/eoefans-web/commits/e844579)) +* **custom**: 修改pc端顶部样式 ([6af984c](https://vlink.dev/EOEFANS/eoefans-web/commits/6af984c)), closes [#29](https://vlink.dev/EOEFANS/eoefans-web/issues/29) + + + # [1.0.0](/compare/v0.3.0...v1.0.0) (2023-03-01) diff --git a/package.json b/package.json index b82f1a0..74546cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eoefans-web", - "version": "1.0.0", + "version": "1.0.1", "type": "module", "scripts": { "dev": "vite --config ./config/vite.dev.config.ts", From 55c68b0e5a5afa6b691cdf6ff152decfcc9ddb1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 01:58:50 +0000 Subject: [PATCH 11/17] add tag detection --- .github/workflows/release-and-update-changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index 18518d2..ef1c65c 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -18,7 +18,7 @@ on: type: string env: - RELEASE_VERSION: ${{ inputs.deploy_version }} + RELEASE_VERSION: ${{ inputs.release_version }} # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -51,7 +51,7 @@ jobs: with: version: 7 run_install: false - + - name: Get pnpm store directory id: pnpm-cache shell: bash @@ -77,10 +77,10 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: update the changelog and add a new tag - if: (${{ env.RELEASE_VERSION }} == '') - run: pnpm release:changelog - + if: ${{ env.RELEASE_VERSION == '' }} + run: pnpm release:changelog + - name: update the changelog and add a specific tag - if: (${{ env.RELEASE_VERSION }} != '') + if: ${{ env.RELEASE_VERSION != '' }} run: pnpm release:changelog --release-as ${{ env.RELEASE_VERSION }} From 93779f4af5520d8ad4d6a11da4d72adfc539d860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 02:02:14 +0000 Subject: [PATCH 12/17] add update and push --- .github/workflows/release-and-update-changelog.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index ef1c65c..4e8515a 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -83,4 +83,5 @@ jobs: - name: update the changelog and add a specific tag if: ${{ env.RELEASE_VERSION != '' }} run: pnpm release:changelog --release-as ${{ env.RELEASE_VERSION }} - + - name: publish the update + run: git push --follow-tags origin main && npm publish \ No newline at end of file From d5b1b869cc43701a761728e51764666c92370a7d Mon Sep 17 00:00:00 2001 From: kazami139 Date: Sun, 5 Mar 2023 02:05:40 +0000 Subject: [PATCH 13/17] chore(release): 1.0.2 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35160ec..c1aa292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## 1.0.2 (2023-03-05) + + + ## [1.0.1](https://vlink.dev/EOEFANS/eoefans-web/compare/v1.0.0...v1.0.1) (2023-03-05) diff --git a/package.json b/package.json index 74546cd..b21fc1d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eoefans-web", - "version": "1.0.1", + "version": "1.0.2", "type": "module", "scripts": { "dev": "vite --config ./config/vite.dev.config.ts", From 13e9a0c3bac61fd72aeb63bd842b132e3d3fdc63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 02:06:38 +0000 Subject: [PATCH 14/17] remove npm publish --- .github/workflows/release-and-update-changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-and-update-changelog.yml b/.github/workflows/release-and-update-changelog.yml index 4e8515a..de8403f 100644 --- a/.github/workflows/release-and-update-changelog.yml +++ b/.github/workflows/release-and-update-changelog.yml @@ -84,4 +84,4 @@ jobs: if: ${{ env.RELEASE_VERSION != '' }} run: pnpm release:changelog --release-as ${{ env.RELEASE_VERSION }} - name: publish the update - run: git push --follow-tags origin main && npm publish \ No newline at end of file + run: git push --follow-tags \ No newline at end of file From 30579d7e234cf06ab0cb96343a086dce169ab9db Mon Sep 17 00:00:00 2001 From: kazami139 Date: Sun, 5 Mar 2023 02:09:03 +0000 Subject: [PATCH 15/17] chore(release): 1.0.3 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1aa292..73c4a77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## 1.0.3 (2023-03-05) + + + ## 1.0.2 (2023-03-05) diff --git a/package.json b/package.json index b21fc1d..ddcdc2f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eoefans-web", - "version": "1.0.2", + "version": "1.0.3", "type": "module", "scripts": { "dev": "vite --config ./config/vite.dev.config.ts", From 2c2b374b36b486014b61f21e0cae920d2215bf0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 02:16:52 +0000 Subject: [PATCH 16/17] =?UTF-8?q?:pencil2:=20docs(custom):=20readme?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=87=AA=E5=8A=A8=E5=8C=96=E6=8C=87=E5=8D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/readme.md b/readme.md index 1ff2f42..0c2efc9 100644 --- a/readme.md +++ b/readme.md @@ -11,7 +11,14 @@ _ _ \_ __ \_ _ \__ /_ _ __ `/__ __ \__ ___/ __ | /| / /_ _ \__ _ \___/ \____/ \___/ /_/ \__,_/ /_/ /_/ /____/ ____/|__/ \___/ /_.___/ ``` +## 自动化说明 +```main```分支每当```git push```的时候自动部署到生产环境并执行代码安全扫描。 +发布新版时,请手动执行[Release CI](https://vlink.dev/EOEFANS/eoefans-web/actions/workflows/release-and-update-changelog.yml),未填写版本号时自动递增,手动指定版本号时发布指定版本号。 + +部署至生产环境请将```main```分支提交PR至```release```分支并合并。```release```分支将自动部署至生产环境。 + +--- ## 目录结构(暂定) 1. component:存放组件 From c2ca0000e1741278b491d640deb9a4fe231d9e92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Sun, 5 Mar 2023 02:18:10 +0000 Subject: [PATCH 17/17] =?UTF-8?q?:pencil2:=20docs(custom):=20readme?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=AF=AD=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 0c2efc9..5fcd7e7 100644 --- a/readme.md +++ b/readme.md @@ -11,8 +11,8 @@ _ _ \_ __ \_ _ \__ /_ _ __ `/__ __ \__ ___/ __ | /| / /_ _ \__ _ \___/ \____/ \___/ /_/ \__,_/ /_/ /_/ /____/ ____/|__/ \___/ /_.___/ ``` -## 自动化说明 -```main```分支每当```git push```的时候自动部署到生产环境并执行代码安全扫描。 +## 自动化指南 +```main```分支每当```git push```的时候自动部署到测试环境并执行代码安全扫描。 发布新版时,请手动执行[Release CI](https://vlink.dev/EOEFANS/eoefans-web/actions/workflows/release-and-update-changelog.yml),未填写版本号时自动递增,手动指定版本号时发布指定版本号。