From 8c92bda64049a1963c072d40797c2251ae39c19d Mon Sep 17 00:00:00 2001 From: Jonas Holst Damtoft Date: Fri, 16 Feb 2024 16:48:01 +0100 Subject: [PATCH] chore(ci): do not remove container this is so we can see the logs if it fails --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5394352..5c594fe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,7 @@ jobs: load: true - name: Start the container run: | - docker run --rm -d -p 21025:21025 -p 21028:21028 --env STEAM_KEY --name screeps -v ${CONFIG_FILE}:/screeps/config.yml ${TEST_TAG} + docker run -d -p 21025:21025 -p 21028:21028 --env STEAM_KEY --name screeps -v ${CONFIG_FILE}:/screeps/config.yml ${TEST_TAG} env: STEAM_KEY: ${{ secrets.STEAM_KEY }} CONFIG_FILE: ${{ format('{0}/{1}', github.workspace, 'test-config.yml') }}