Skip to content

Commit

Permalink
actions: fix missing backslash for dockerbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Jan 2, 2020
1 parent 696cd1f commit ebf33f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
tags:
- 'version/*'

name: Create Release from Tag
name: passbook-version-tag

jobs:
build:
Expand All @@ -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
Expand Down

0 comments on commit ebf33f3

Please sign in to comment.