@@ -124,7 +124,7 @@ jobs:
124124
125125 steps :
126126 - id : meta_development
127- if : needs.context.check .type == 'development'
127+ if : needs.context.outputs .type == 'development'
128128 name : Docker Meta (development)
129129 uses : docker/metadata-action@v4
130130 with :
@@ -134,17 +134,17 @@ jobs:
134134 type=ref,event=branch
135135
136136 - id : meta_release
137- if : needs.context.check .type == 'release'
137+ if : needs.context.outputs .type == 'release'
138138 name : Docker Meta (release)
139139 uses : docker/metadata-action@v4
140140 with :
141141 images : |
142142 "${{ secrets.DOCKER_HUB_USERNAME }}/${{secrets.DOCKER_HUB_REPOSITORY_NAME }}"
143143 tags : |
144- type=semver,value=${{ needs.context.check .version }},pattern={{raw}}
145- type=semver,value=${{ needs.context.check .version }},pattern={{version}}
146- type=semver,value=${{ needs.context.check .version }},pattern=v{{major}}
147- type=semver,value=${{ needs.context.check .version }},pattern={{major}}.{{minor}}
144+ type=semver,value=${{ needs.context.outputs .version }},pattern={{raw}}
145+ type=semver,value=${{ needs.context.outputs .version }},pattern={{version}}
146+ type=semver,value=${{ needs.context.outputs .version }},pattern=v{{major}}
147+ type=semver,value=${{ needs.context.outputs .version }},pattern={{major}}.{{minor}}
148148
149149 - id : login
150150 name : Login to Docker Hub
0 commit comments