|
@@ -21,6 +21,12 @@ jobs:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
|
|
+ - name: set lower case repository name
|
|
|
|
|
+ run: |
|
|
|
|
|
+ echo "REPOSITORY_LC=${REPOSITORY,,}" >>${GITHUB_ENV}
|
|
|
|
|
+ env:
|
|
|
|
|
+ REPOSITORY: '${{ github.repository }}'
|
|
|
|
|
+
|
|
|
- name: Log in to the Container registry
|
|
- name: Log in to the Container registry
|
|
|
uses: docker/login-action@v2.1.0
|
|
uses: docker/login-action@v2.1.0
|
|
|
with:
|
|
with:
|
|
@@ -34,5 +40,5 @@ jobs:
|
|
|
context: .
|
|
context: .
|
|
|
push: true
|
|
push: true
|
|
|
tags: |
|
|
tags: |
|
|
|
- ${{ env.REGISTRY }}/${{ github.actor,, }}/${{ github.repository,, }}:${{ steps.get_version.outputs.VERSION }}
|
|
|
|
|
- ${{ env.REGISTRY }}/${{ github.actor,, }}/${{ github.repository,, }}:latest
|
|
|
|
|
|
|
+ ${{ env.REGISTRY }}/${{ REPOSITORY_LC }}:${{ steps.get_version.outputs.VERSION }}
|
|
|
|
|
+ ${{ env.REGISTRY }}/${{ REPOSITORY_LC }}:latest
|