mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 19:02:31 +08:00
fix openim config mongo passwd env
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
f56e5aa9b3
commit
77f33d9af7
24
.github/workflows/openimci.yml
vendored
24
.github/workflows/openimci.yml
vendored
@ -279,24 +279,18 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
sudo make init
|
sudo make init
|
||||||
sudo make image
|
sudo make image
|
||||||
sudo docker images > docker_build_images.txt
|
|
||||||
|
|
||||||
- name: Check the OpenIM environment and status
|
- name: Check the OpenIM environment and status
|
||||||
run: |
|
run: |
|
||||||
sudo docker images > docker_images.txt
|
sudo echo "### Docker Images:" >> /tmp/out.txt
|
||||||
sudo docker ps > docker_containers.txt
|
sudo docker images >> /tmp/out.txt
|
||||||
|
sudo echo "### Docker Processes:" >> /tmp/out.txt
|
||||||
|
sudo docker ps >> /tmp/out.txt
|
||||||
|
|
||||||
- name: Comment Docker Images on PR
|
- name: Read /tmp/out.txt
|
||||||
uses: thollander/actions-comment-pull-request@v2
|
id: out
|
||||||
with:
|
|
||||||
message: |
|
|
||||||
### Docker Images:
|
|
||||||
```
|
|
||||||
${{ steps.read_file.outputs.docker_images }}
|
|
||||||
```
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- id: read_file
|
|
||||||
uses: juliangruber/read-file-action@v1
|
uses: juliangruber/read-file-action@v1
|
||||||
with:
|
with:
|
||||||
path: ./docker_images.txt
|
path: /tmp/out.txt
|
||||||
|
- name: Echo /tmp/out.txt
|
||||||
|
run: echo "${{ steps.out.outputs.content }}"
|
||||||
Loading…
x
Reference in New Issue
Block a user