This is an automated email from the ASF dual-hosted git repository. liujun pushed a commit to branch refactor/next-2 in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
commit 92ea9920e723f18a9f53502a3c87c74410ed54ed Author: chickenlj <[email protected]> AuthorDate: Wed Feb 22 10:55:44 2023 +0800 update workflow --- .github/workflows/build_and_deploy.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index a74d831832..6e86826fd1 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -19,8 +19,12 @@ jobs: uses: actions/setup-node@v1 with: node-version: '12.x' + - name: Set up Go 1.18.3 + uses: actions/setup-go@v2 + with: + go-version: 1.18.3 - name: Setup Docsy - run: git submodule update --init --recursive && sudo npm install -D --save autoprefixer && sudo npm install -D --save postcss-cli + run: sudo npm install -D --save autoprefixer && sudo npm install -D postcss && sudo npm install -D --save postcss-cli - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: @@ -54,8 +58,12 @@ jobs: uses: actions/setup-node@v1 with: node-version: '12.x' + - name: Set up Go 1.18.3 + uses: actions/setup-go@v2 + with: + go-version: 1.18.3 - name: Setup Docsy - run: git submodule update --init --recursive && sudo npm install -D --save autoprefixer && sudo npm install -D --save postcss-cli + run: sudo npm install -D --save autoprefixer && sudo npm install -D postcss && sudo npm install -D --save postcss-cli - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with:
