File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,18 +70,18 @@ jobs:
70
70
- name : build docker image
71
71
run : |
72
72
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
73
- SERVER_IMAGE_TAG=$DOCKER_TAG_FROM_WORKFLOW_DISPATCH docker compose -f docker-compose.dev. yml build
73
+ SERVER_IMAGE_TAG=$DOCKER_TAG_FROM_WORKFLOW_DISPATCH docker compose -f docker-compose.yml build
74
74
else
75
- SERVER_IMAGE_TAG=$DOCKER_TAG_FROM_PUSH docker compose -f docker-compose.dev. yml build
75
+ SERVER_IMAGE_TAG=$DOCKER_TAG_FROM_PUSH docker compose -f docker-compose.yml build
76
76
fi
77
77
docker images
78
78
79
79
- name : rename docker images
80
80
run : |
81
81
if [ "${{ github.event_name }}" == "push" ]; then
82
- docker image tag em-pub-dash-dev /frontend:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}:${GITHUB_REF##*/}_${{ steps.date.outputs.date }}
82
+ docker image tag em-pub-dash/frontend:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}:${GITHUB_REF##*/}_${{ steps.date.outputs.date }}
83
83
fi
84
- docker image tag em-pub-dash-dev /viz-scripts:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}_notebook:${GITHUB_REF##*/}_${{ steps.date.outputs.date }}
84
+ docker image tag em-pub-dash/viz-scripts:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}_notebook:${GITHUB_REF##*/}_${{ steps.date.outputs.date }}
85
85
86
86
- name : push docker images
87
87
run : |
You can’t perform that action at this time.
0 commit comments