File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,12 @@ jobs:
3737
3838 - name : Push Docker img
3939 run : |
40- docker push ghcr.io/${{ github.repository }}/intel/ia-time-series-analytics-microservice:1.0.0
40+ IMAGE_NAME=$(grep '^TIME_SERIES_ANALYTICS_IMAGE=' microservices/time-series-analytics/docker/.env | cut -d'=' -f2)
41+ docker push ghcr.io/${{ github.repository }}/$IMAGE_NAME
4142
4243 - name : Clean up
4344 if : always()
4445 run : |
4546 rm -rf edge-ai-libraries-repo
46- docker rmi ghcr.io/${{ github.repository }}intel/ia-time-series-analytics-microservice:1.0.0 || true
47+ IMAGE_NAME=$(grep '^TIME_SERIES_ANALYTICS_IMAGE=' microservices/time-series-analytics/docker/.env | cut -d'=' -f2)
48+ docker rmi ghcr.io/${{ github.repository }}/$IMAGE_NAME || true
You can’t perform that action at this time.
0 commit comments