This is an automated email from the ASF dual-hosted git repository.
dinglei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-site.git
The following commit(s) were added to refs/heads/master by this push:
new 0e374b627 Delete auto release for master.
0e374b627 is described below
commit 0e374b627d3dd97343fe1074cfd7878c2d01b42d
Author: dinglei <[email protected]>
AuthorDate: Wed Oct 12 10:53:55 2022 +0800
Delete auto release for master.
---
.github/workflows/publish-asf-site.yml | 41 ----------------------------------
1 file changed, 41 deletions(-)
diff --git a/.github/workflows/publish-asf-site.yml
b/.github/workflows/publish-asf-site.yml
deleted file mode 100644
index d603d7695..000000000
--- a/.github/workflows/publish-asf-site.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: publish-asf-site
-
-on:
- push:
- branches: [ master ]
- workflow_dispatch:
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- with:
- path: rocketmq-site
-
- - run: |
- cd $GITHUB_WORKSPACE/rocketmq-site/
- sudo gem install jekyll bundler
- bundle install
- bundle exec jekyll build
- rm .git/ -rf
-
- - uses: actions/checkout@v2
- with:
- ref: asf-site
- path: asf-site
-
- - run: |
- cd $GITHUB_WORKSPACE/asf-site/
- git rm -rf .
- cp -Rf $GITHUB_WORKSPACE/rocketmq-site/. .
- ls
- git config --global user.email "[email protected]"
- git config --global user.name "github-action"
- sed -i "/content/d" .gitignore
- sed -i "/vendor/d" .gitignore
- git add .
- git status
- git commit -m "Latest site on successful build auto-pushed to
asf-site"
- git push