actions: fix missing backslash for dockerbuild
This commit is contained in:
parent
696cd1f247
commit
ebf33f39c9
|
@ -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
|
||||
|
|
Reference in New Issue