Skip to content

Commit

Permalink
eliminate outdated GitHub run number suffix for release Docker images…
Browse files Browse the repository at this point in the history
… in the release CI pipeline
  • Loading branch information
MGTheTrain committed Jan 14, 2025
1 parent 3aefe33 commit d9681ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
- name: Build and push Docker image for REST backend
run: |
BACKEND_TAG="${{ secrets.DOCKER_USERNAME }}/crypto-vault-rest-service:${{ env.VERSION }}-${{ github.run_number }}"
BACKEND_TAG="${{ secrets.DOCKER_USERNAME }}/crypto-vault-rest-service:${{ env.VERSION }}"
docker build -t $BACKEND_TAG -f cmd/crypto-vault-rest-service/Dockerfile .
docker push $BACKEND_TAG
- name: Build and push Docker image for gRPC backend
run: |
BACKEND_TAG="${{ secrets.DOCKER_USERNAME }}/crypto-vault-grpc-service:${{ env.VERSION }}-${{ github.run_number }}"
BACKEND_TAG="${{ secrets.DOCKER_USERNAME }}/crypto-vault-grpc-service:${{ env.VERSION }}"
docker build -t $BACKEND_TAG -f cmd/crypto-vault-grpc-service/Dockerfile .
docker push $BACKEND_TAG
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Relocated repository interfaces to the domain layer adhering to domain-driven design concepts
- Utilized `ubuntu-22.04` tag for runners
- Eliminated the outdated GitHub run number suffix for release Docker images in the release CI pipeline

### Fixed

Expand Down

0 comments on commit d9681ab

Please sign in to comment.