We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dce9c5 commit 9646466Copy full SHA for 9646466
1 file changed
.github/workflows/deploy-image.yml
@@ -12,7 +12,7 @@ on:
12
13
env:
14
REGISTRY: ghcr.io
15
- # IMAGE_NAME: ${{ github.repository }}
+ REPOSITORY: ${{ github.repository }}
16
17
jobs:
18
build-and-push-image:
@@ -24,8 +24,8 @@ jobs:
24
steps:
25
- name: Set Environmental Variables
26
run: |
27
- echo Repository: $(github.repository)
28
- export IMAGE_NAME=${ github.repository#docker }
+ echo Repository: $(env.REPOSITORY)
+ export IMAGE_NAME=${env.REPOSITORY#docker}
29
echo Image Name: $(env.IMAGE_NAME)
30
31
- name: Checkout repository
0 commit comments