Skip to content

Commit

Permalink
Fixed github workflows: build_docker_image_(master|release) (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
6RUN0 committed Jul 6, 2023
1 parent 35d2e26 commit 454292a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_image_master.yml
Expand Up @@ -26,6 +26,6 @@ jobs:
yarn build
- name: Build the Docker Image
run: |
docker build -t germey/gerapy:master -f ./docker/Dockerfile .
docker build -t germey/gerapy:master .
- name: Push the Docker Image
run: docker push germey/gerapy:master
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_image_release.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
tag=${GITHUB_REF:11}
echo "Build Tag '$tag'"
docker build -t germey/gerapy:$tag -f ./docker/Dockerfile .
docker build -t germey/gerapy:$tag .
docker push germey/gerapy:$tag
regex='^([0-9]+\.){0,2}(\*|[0-9]+)$'
if [[ $tag =~ $regex ]]; then
Expand Down

0 comments on commit 454292a

Please sign in to comment.