We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7103a7c commit 084fb6cCopy full SHA for 084fb6c
.github/workflows/docker-build.yml
@@ -22,12 +22,18 @@ jobs:
22
username: ${{ github.repository_owner }}
23
password: ${{ secrets.GITHUB_TOKEN }}
24
25
+ - name: Convert owner name to lowercase
26
+ id: string
27
+ uses: vishalmamidi/lowercase-action@v1
28
+ with:
29
+ string: ${{ github.repository_owner }}
30
+
31
- name: Build and push Docker image
32
uses: docker/build-push-action@v4
33
with:
34
context: ./agents
35
file: ./agents/Dockerfile
36
push: true
37
tags: |
- ghcr.io/${{ github.repository_owner,, }}/clay-i-agent:latest
- ghcr.io/${{ github.repository_owner,, }}/clay-i-agent:v15
38
+ ghcr.io/${{ steps.string.outputs.lowercase }}/clay-i-agent:latest
39
+ ghcr.io/${{ steps.string.outputs.lowercase }}/clay-i-agent:v15
0 commit comments