mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-09-01 09:38:28 +02:00
Merge pull request #2814 from testssl/revert-2813-revert_2772_for_testing
Revert "Revert lowercase conversion for repo"
This commit is contained in:
11
.github/workflows/docker-3.2.yml
vendored
11
.github/workflows/docker-3.2.yml
vendored
@ -18,6 +18,9 @@ jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: lowercase the repository name
|
||||
run: echo "REPO=${GITHUB_REPOSITORY@L}" >> "${GITHUB_ENV}"
|
||||
|
||||
- name: Source checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
@ -33,11 +36,11 @@ jobs:
|
||||
id: docker_meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: ${{ github.repository }}
|
||||
images: ${{ env.REPO }}
|
||||
labels: |
|
||||
org.opencontainers.image.version=${{ env.GIT_BRANCH }}
|
||||
org.opencontainers.image.revision=${{ github.sha }}
|
||||
org.opencontainers.image.title=${{ github.repository }}
|
||||
org.opencontainers.image.title=${{ env.REPO }}
|
||||
|
||||
- name: GitHub login
|
||||
if: ${{ github.event_name != 'pull_request' }}
|
||||
@ -58,5 +61,5 @@ jobs:
|
||||
cache-to: type=gha, scope=${{ github.workflow }}
|
||||
labels: ${{ steps.docker_meta.outputs.labels }}
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:${{ env.GIT_BRANCH }}
|
||||
ghcr.io/${{ github.repository }}:latest
|
||||
ghcr.io/${{ env.REPO }}:${{ env.GIT_BRANCH }}
|
||||
ghcr.io/${{ env.REPO }}:latest
|
||||
|
Reference in New Issue
Block a user