Skip to content

Commit f9ee006

Browse files
Capitalize constants
1 parent 56c434d commit f9ee006

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
env:
1919
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }}
2020
GHCR_USER: ${{ github.actor }}
21-
app_name: ${{ vars.APP_NAME }}
21+
APP_NAME: ${{ vars.APP_NAME }}
2222

2323
jobs:
2424
ghcr:
@@ -33,7 +33,7 @@ jobs:
3333
uses: docker/metadata-action@v4
3434
with:
3535
images: |
36-
${{ env.GHCR_USER }}/${{ env.app_name }}
36+
${{ env.GHCR_USER }}/${{ env.APP_NAME }}
3737
tags: |
3838
type=schedule
3939
type=ref,event=branch
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
# list of Docker images to use as base name for tags
7171
images: |
72-
${{ env.DOCKER_USER }}/${{ env.app_name }}
72+
${{ env.DOCKER_USER }}/${{ env.APP_NAME }}
7373
# generate Docker tags based on the following events/attributes
7474
tags: |
7575
type=schedule

0 commit comments

Comments
 (0)