We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c478e6c commit 56208abCopy full SHA for 56208ab
.github/workflows/docker-image.yml
@@ -32,7 +32,7 @@ jobs:
32
echo "docker_version=$(docker version --format '{{.Client.APIVersion}}')" >> $GITHUB_ENV
33
tag=$(date +%s)
34
echo "tag=$tag" >> $GITHUB_ENV
35
- if docker build . --file Containerfile --tag ${{ secrets.DOCKERHUB_USERNAME }}/ci-kpi:$tag; then
+ if docker build . --file Containerfile --tag ${{ secrets.DOCKERHUB_USERNAME }}/ci-kpi:latest; then
36
echo "result=true" >> $GITHUB_ENV
37
else
38
echo "result=false" >> $GITHUB_ENV
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Push Docker image
43
run: |
44
- docker push ${{ secrets.DOCKERHUB_USERNAME }}/ci-kpi:$tag
+ docker push ${{ secrets.DOCKERHUB_USERNAME }}/ci-kpi:latest
45
46
- name: Send CI KPI
47
0 commit comments