Skip to content

Commit

Permalink
Merge pull request #3 from jplomas/main
Browse files Browse the repository at this point in the history
Convert to lower case for container registry
  • Loading branch information
jplomas authored Jun 27, 2024
2 parents b650594 + 5caebce commit bddbb68
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: read-docker-image-identifiers
name: Read Docker Image Identifiers
run: echo ::set-env name=IMAGE_REPOSITORY::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.tag }}
tags: ${{ env.IMAGE_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.tag }}

0 comments on commit bddbb68

Please # to comment.