mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 02:42:19 +08:00
update openim environment and status
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
e20be3d97e
commit
fb0740468d
12
.github/workflows/openimci.yml
vendored
12
.github/workflows/openimci.yml
vendored
@ -135,8 +135,12 @@ jobs:
|
||||
- name: Check the OpenIM environment and status
|
||||
id: docker_info
|
||||
run: |
|
||||
sudo docker images > docker_images.txt
|
||||
sudo docker ps > docker_containers.txt
|
||||
sudo docker images | base64 > docker_images.txt
|
||||
sudo docker ps | base64 > docker_containers.txt
|
||||
IMAGES=$(cat docker_images.txt)
|
||||
CONTAINERS=$(cat docker_containers.txt)
|
||||
echo "::set-output name=images::$IMAGES"
|
||||
echo "::set-output name=containers::$CONTAINERS"
|
||||
|
||||
- name: Comment PR with message
|
||||
uses: ./
|
||||
@ -156,11 +160,11 @@ jobs:
|
||||
message: |
|
||||
### Docker Images:
|
||||
```
|
||||
${{ readFile('docker_images.txt') }}
|
||||
${{ steps.docker_info.outputs.images | base64decode }}
|
||||
```
|
||||
### Docker Processes:
|
||||
```
|
||||
${{ readFile('docker_containers.txt') }}
|
||||
${{ steps.docker_info.outputs.containers | base64decode }}
|
||||
```
|
||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user