Skip to content

Commit

Permalink
Uppercase github username issues
Browse files Browse the repository at this point in the history
  • Loading branch information
OBarronCS committed Sep 8, 2024
1 parent 0a90c05 commit 425cd42
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,19 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}


- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Normal image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
tags: latest

- name: Full image
uses: docker/build-push-action@v6
Expand All @@ -41,5 +47,5 @@ jobs:
push: true
build-args: |
FULL_BUILD=true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:full
tags: full

0 comments on commit 425cd42

Please sign in to comment.