We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d6f41a commit b321b36Copy full SHA for b321b36
1 file changed
.github/workflows/docker-image.yml
@@ -28,10 +28,16 @@ jobs:
28
username: ${{ github.actor }}
29
password: ${{ secrets.GITHUB_TOKEN }}
30
31
+ - name: Set lower case owner name
32
+ id: set_owner_lc
33
+ run: echo "owner_lc=${OWNER,,}" >> $GITHUB_OUTPUT
34
+ env:
35
+ OWNER: ${{ github.repository_owner }}
36
+
37
- name: Build and push Docker image
38
uses: docker/build-push-action@v5
39
with:
40
context: .
41
file: ./Dockerfile
42
push: true
- tags: ghcr.io/${{ github.repository }}-jekyll-modified:latest
43
+ tags: ghcr.io/${{ steps.set_owner_lc.outputs.owner_lc }}/jekyll-modified:latest
0 commit comments