Skip to content

Commit

Permalink
fix: github action install s with v3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
rsonghuster committed Dec 29, 2023
1 parent 8109b9f commit 596d555
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_node16.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
brew install curl wget
- name: install s
run: |
npm i @serverless-devs/s -g
npm i @serverless-devs/s@v3 -g
- name: config s
run: |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
choco install -y curl
- name: install s
run: |
npm i @serverless-devs/s -g
npm i @serverless-devs/s@v3 -g
- name: config s
run: |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
sudo apt-get install -y wget curl
- name: install s
run: |
npm i @serverless-devs/s -g
npm i @serverless-devs/s@v3 -g
- name: config s
run: |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_with_docker_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
sudo apt-get install -y wget curl
- name: install s
run: |
sudo npm i @serverless-devs/s -g
sudo npm i @serverless-devs/s@v3 -g
- name: config s
run: |
sudo s config add --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_with_docker_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
brew install wget curl
- name: install s
run: |
npm i @serverless-devs/s -g
npm i @serverless-devs/s@v3 -g
- name: config s
run: |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# 快速开始

🙋 三步即可上手 函数计算(fc3)组件的使用:
[安装 Serverless Devs 开发者工具](https://github.com/Serverless-Devs/Serverless-Devs/blob/master/docs/zh/install.md)`npm install -g @serverless-devs/s`
[安装 Serverless Devs 开发者工具](https://docs.serverless-devs.com/serverless-devs/quick_start#%E5%B7%A5%E5%85%B7%E5%AE%89%E8%A3%85)`npm install -g @serverless-devs/s`

> 安装完成还需要配置密钥,可以参考[密钥配置文档](config.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ category: '概览'
# 快速开始

🙋 三步即可上手 函数计算(fc3)组件的使用:
[安装 Serverless Devs 开发者工具](https://github.com/Serverless-Devs/Serverless-Devs/blob/master/docs/zh/install.md)`npm install -g @serverless-devs/s`
[安装 Serverless Devs 开发者工具](https://docs.serverless-devs.com/serverless-devs/quick_start#%E5%B7%A5%E5%85%B7%E5%AE%89%E8%A3%85)`npm install -g @serverless-devs/s`

> 安装完成还需要配置密钥,可以参考[密钥配置文档](config.md)
Expand Down

0 comments on commit 596d555

Please sign in to comment.