mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00:00
ignore docker restart retcode
This commit is contained in:
parent
f6ec98e1c0
commit
ab1dac50f6
1 changed files with 2 additions and 2 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -131,13 +131,13 @@ jobs:
|
|||
- name: Curl index with PUBLIC_INDEX=False
|
||||
run: |
|
||||
docker-compose run archivebox config --set PUBLIC_INDEX=False
|
||||
docker-compose restart
|
||||
docker-compose restart || true
|
||||
sleep 6
|
||||
curl --silent --location 'http://127.0.0.1:8000' | grep 'ArchiveBox Admin'
|
||||
|
||||
- name: Curl index with PUBLIC_INDEX=True
|
||||
run: |
|
||||
docker-compose run archivebox config --set PUBLIC_INDEX=True
|
||||
docker-compose restart
|
||||
docker-compose restart || true
|
||||
sleep 6
|
||||
curl --silent --location 'http://127.0.0.1:8000' | grep 'Add Links'
|
||||
|
|
Loading…
Reference in a new issue