actions: fix missing backslash for dockerbuild

This commit is contained in:
Jens Langhammer 2020-01-02 14:09:42 +01:00
parent 696cd1f247
commit ebf33f39c9
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ on:
tags:
- 'version/*'
name: Create Release from Tag
name: passbook-version-tag
jobs:
build:
@ -15,9 +15,9 @@ jobs:
run: |
export PASSBOOK_DOMAIN=localhost
docker-compose pull
docker build
--no-cache
-t beryju/passbook:latest
docker build \
--no-cache \
-t beryju/passbook:latest \
-f Dockerfile .
docker-compose up --no-start
docker-compose start postgresql redis