Skip to content

Commit

Permalink
feature(workflow): prod docker build tags (#202)
Browse files Browse the repository at this point in the history
* feat(release): update docker latest tag

* feat(release): update docker tags

* feat(release): clean up
  • Loading branch information
OlegDO authored Apr 24, 2024
1 parent 313b80f commit e9b9b0e
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-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
FROM_TAG: "latest"
with:
name: "Lomray-Software/microservices/${{ env.MICROSERVICE_NAME }}"
tags: ${{ steps.package-version.outputs.version}}
tags: "latest,${{ steps.package-version.outputs.version}}"
dockerfile: ${{ steps.docker-file.outputs.path }}
context: ${{ env.WORK_DIR }}
buildoptions: "--compress --force-rm --no-cache"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
FROM_TAG: "latest${{ needs.changed-microservices.outputs.docker-tag }}"
with:
name: "Lomray-Software/microservices/${{ env.MICROSERVICE_NAME }}"
tags: "latest${{ needs.changed-microservices.outputs.docker-tag }},${{ steps.package-version.outputs.version}}"
tags: "latest${{ needs.changed-microservices.outputs.docker-tag }},${{ steps.package-version.outputs.version }}"
dockerfile: ${{ steps.docker-file.outputs.path }}
context: ${{ env.WORK_DIR }}
buildoptions: "--compress --force-rm --no-cache"
Expand Down

0 comments on commit e9b9b0e

Please sign in to comment.