File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 4949 if : ${{ github.event_name == 'push' || github.event.inputs.services == 'all' || contains(github.event.inputs.services, matrix.service.name) }}
5050 uses : actions/checkout@v4
5151
52+ - name : Set lowercase owner
53+ if : ${{ github.event_name == 'push' || github.event.inputs.services == 'all' || contains(github.event.inputs.services, matrix.service.name) }}
54+ run : echo "OWNER_LC=${OWNER,,}" >> $GITHUB_ENV
55+ env :
56+ OWNER : ${{ github.repository_owner }}
57+
5258 - name : Set up Docker Buildx
5359 if : ${{ github.event_name == 'push' || github.event.inputs.services == 'all' || contains(github.event.inputs.services, matrix.service.name) }}
5460 uses : docker/setup-buildx-action@v3
6874 context : ${{ matrix.service.path }}
6975 platforms : linux/amd64
7076 push : true
71- tags : ghcr.io/${{ github.repository_owner | lower }}/${{ matrix.service.name }}:latest
77+ tags : ghcr.io/${{ env.OWNER_LC }}/${{ matrix.service.name }}:latest
You can’t perform that action at this time.
0 commit comments