Skip to content

Commit

Permalink
fixes docker release
Browse files Browse the repository at this point in the history
  • Loading branch information
benammann committed May 31, 2022
1 parent aab0b3e commit 6371633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Docker login
run: echo $CR_TOKEN | docker login -u $CR_USER --password-stdin
- name: Docker Build
run: docker build --pull -t "$IMAGE_NAME:latest" . --build-arg BUILD_VERSION=$RELEASE_VERSION --build-arg BUILD_COMMIT=$GITHUB_SHA --build-arg DATE=$(date)
run: docker build --pull -t "$IMAGE_NAME:latest" --build-arg BUILD_VERSION=$RELEASE_VERSION --build-arg BUILD_COMMIT=$GITHUB_SHA --build-arg DATE=$(date) .
- name: Docker Push (latest tag)
run: docker push "$IMAGE_NAME:latest"
- name: Docker Tag latest as build tag
Expand Down

0 comments on commit 6371633

Please sign in to comment.