partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit d5a9d1a539fe29eea399a4789c8f967a3fe3668e
parent a6ce4c686839017314ac766e2c90e548fc99b8de
Author: Christian <github@christianwolf.email>
Date:   Fri, 18 Dec 2020 19:48:38 +0100

Merge pull request #1162 from partkeepr/fix/docker-path-names

Remove bug in docker image path name
Diffstat:
M.github/workflows/docker.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml @@ -20,7 +20,7 @@ jobs: run: git fetch --unshallow origin +refs/tags/*:refs/tags/* - name: Build the base docker image - run: docker pull partkeepr/base-dev:latest && docker build docker/base-dev --file docker/base/Dockerfile --cache-from partkeepr/base-dev:latest --tag partkeepr/base-dev:latest + run: docker pull partkeepr/base-dev:latest && docker build docker/base-dev --file docker/base-dev/Dockerfile --cache-from partkeepr/base-dev:latest --tag partkeepr/base-dev:latest - name: Tag the base docker image with git hash run: docker tag partkeepr/base-dev:latest partkeepr/base-dev:$(git describe) - name: Deploy the base docker images