From ce5d004c78a72b770c2721b05c3d2f0954d7306e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=A8=E6=9C=A8=E7=9A=84=E6=9C=A8=E5=A4=B4?= Date: Mon, 14 Aug 2023 20:07:34 +0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aab2afa..631ce55 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,6 +21,12 @@ jobs: - 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 uses: docker/login-action@v2.1.0 with: @@ -34,5 +40,5 @@ jobs: context: . push: true 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