Skip to content

Commit

Permalink
Merge pull request #1 from intelygenz/fix/action-image-name
Browse files Browse the repository at this point in the history
fix: set IMAGE_NAME to lowercase
  • Loading branch information
pablon authored Nov 19, 2024
2 parents 58d4b64 + a3472c8 commit 1f9501c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build-push-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
#######################################################
#######################################################

#######################################################
### Uncomment all lines below to use this template ###
#######################################################

name: "Docker build & push - GHCR"
name: "Docker build & push"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -25,7 +21,6 @@ on:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}:latest

jobs:
docker-build-push:
Expand All @@ -35,6 +30,10 @@ jobs:
contents: read

steps:
- name: Set vars
run: |
echo "IMAGE_NAME=${GITHUB_REPOSITORY,,}:latest" >>${GITHUB_ENV}
- name: Checkout repository
uses: actions/checkout@v4

Expand Down

0 comments on commit 1f9501c

Please sign in to comment.