This is an automated email from the ASF dual-hosted git repository.
liujun pushed a commit to branch old-docsite-version
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/old-docsite-version by this
push:
new f3fc0bd remove deploy action
f3fc0bd is described below
commit f3fc0bdfc188218be9d9222745d0b4ea485c577f
Author: ken.lj <[email protected]>
AuthorDate: Sun Nov 1 00:07:44 2020 +0800
remove deploy action
---
.github/workflows/deploy.yml | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
deleted file mode 100644
index c84f032..0000000
--- a/.github/workflows/deploy.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: Website deploy
-
-on:
- push:
- branches:
- - master
-
-jobs:
- Build-Deploy:
- runs-on: ubuntu-18.04
- steps:
- - uses: actions/checkout@master
-
- - name: Use Node.js 10.x
- uses: actions/setup-node@v1
- with:
- node-version: 10.x
- - name: Build
- run: |
- npm install && npm run build && mkdir deploy-dist && cp -R zh-cn/
en-us/ build/ img/ schema/ md_json/ documentations/ deploy-dist/ && mv
.htaccess *.html *.xml deploy-dist/
- - name: Deploy
- uses: peaceiris/[email protected]
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- PUBLISH_BRANCH: asf-site
- PUBLISH_DIR: ./deploy-dist
- with:
- keepFiles: true