mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 02:42:19 +08:00
update openim and optimize openim docs and dig check
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
45689343f7
commit
43c984f771
20
.github/workflows/openimci.yml
vendored
20
.github/workflows/openimci.yml
vendored
@ -137,23 +137,27 @@ jobs:
|
|||||||
- name: Check the OpenIM environment and status
|
- name: Check the OpenIM environment and status
|
||||||
id: docker_info
|
id: docker_info
|
||||||
run: |
|
run: |
|
||||||
IMAGES=$(sudo docker images)
|
IMAGES=$(sudo docker images | base64 -w 0)
|
||||||
CONTAINERS=$(sudo docker ps)
|
CONTAINERS=$(sudo docker ps | base64 -w 0)
|
||||||
echo "::set-output name=images::$IMAGES"
|
echo "IMAGES=${IMAGES}" >> $GITHUB_ENV
|
||||||
echo "::set-output name=containers::$CONTAINERS"
|
echo "CONTAINERS=${CONTAINERS}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Comment PR
|
- name: Comment PR
|
||||||
uses: thollander/actions-comment-pull-request@v2
|
uses: thollander/actions-comment-pull-request@v1
|
||||||
|
env:
|
||||||
|
IMAGES: ${{ env.IMAGES }}
|
||||||
|
CONTAINERS: ${{ env.CONTAINERS }}
|
||||||
with:
|
with:
|
||||||
message: |
|
message: |
|
||||||
### Docker Images:
|
### Docker Images:
|
||||||
```
|
```
|
||||||
${{ steps.docker_info.outputs.images }}
|
${{ env.IMAGES | base64 --decode }}
|
||||||
```
|
```
|
||||||
### Docker Processes:
|
### Docker Processes:
|
||||||
```
|
```
|
||||||
${{ steps.docker_info.outputs.containers }}
|
${{ env.CONTAINERS | base64 --decode }}
|
||||||
```
|
```
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
|
||||||
execute-scripts:
|
execute-scripts:
|
||||||
name: Execute OpenIM Script On ${{ matrix.os }}
|
name: Execute OpenIM Script On ${{ matrix.os }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user