We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785caa7 commit 5c414cfCopy full SHA for 5c414cf
.github/workflows/main.yml
@@ -83,7 +83,9 @@ jobs:
83
id: meta
84
uses: docker/metadata-action@v5
85
with:
86
- images: ${{ env.IMAGE_NAME }}
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
87
+ flavor: |
88
+ suffix=-${{ github.ref_name }}
89
tags: |
90
type=ref,event=branch
91
type=ref,event=pr
@@ -191,7 +193,7 @@ jobs:
191
193
192
194
### Docker
195
```bash
- docker pull ${{ env.IMAGE_NAME }}:${{ steps.tag_version.outputs.version }}
196
+ docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.tag_version.outputs.version }}
197
```
198
199
### Changes
0 commit comments