Skip to content

Commit 2ad5809

Browse files
committed
Fix args to jupyterhub/action-major-minor-tag-calculator@v3
1 parent 4bfc0b6 commit 2ad5809

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ jobs:
146146
id: jupyterhubtags
147147
uses: jupyterhub/action-major-minor-tag-calculator@v3
148148
with:
149-
tagList: ${{ needs.tag.outputs.existing-tags }}
150-
currentTag: ${{ needs.tag.outputs.new-tag }}
149+
existingTags: ${{ needs.tag.outputs.existing-tags }}
150+
newTag: ${{ needs.tag.outputs.new-tag }}
151151
prefix: >-
152152
${{ env.REGISTRY }}${{ env.IMAGE }}:
153153
${{ (env.PUBLIC == 'true' && env.PUBLISH_DOCKERIO == 'true') && format('{0}:', env.IMAGE) || '' }}
@@ -176,8 +176,8 @@ jobs:
176176
id: onbuildtags
177177
uses: jupyterhub/action-major-minor-tag-calculator@v3
178178
with:
179-
tagList: ${{ needs.tag.outputs.existing-tags }}
180-
currentTag: ${{ needs.tag.outputs.new-tag }}
179+
existingTags: ${{ needs.tag.outputs.existing-tags }}
180+
newTag: ${{ needs.tag.outputs.new-tag }}
181181
prefix: >-
182182
${{ env.REGISTRY }}${{ env.IMAGE }}-onbuild:
183183
${{ (env.PUBLIC == 'true' && env.PUBLISH_DOCKERIO == 'true') && format('{0}-onbuild:', env.IMAGE) || '' }}
@@ -200,8 +200,8 @@ jobs:
200200
id: demotags
201201
uses: jupyterhub/action-major-minor-tag-calculator@v3
202202
with:
203-
tagList: ${{ needs.tag.outputs.existing-tags }}
204-
currentTag: ${{ needs.tag.outputs.new-tag }}
203+
existingTags: ${{ needs.tag.outputs.existing-tags }}
204+
newTag: ${{ needs.tag.outputs.new-tag }}
205205
prefix: >-
206206
${{ env.REGISTRY }}${{ env.IMAGE }}-demo:
207207
${{ (env.PUBLIC == 'true' && env.PUBLISH_DOCKERIO == 'true') && format('{0}-demo:', env.IMAGE) || '' }}
@@ -224,8 +224,8 @@ jobs:
224224
id: singleusertags
225225
uses: jupyterhub/action-major-minor-tag-calculator@v3
226226
with:
227-
tagList: ${{ needs.tag.outputs.existing-tags }}
228-
currentTag: ${{ needs.tag.outputs.new-tag }}
227+
existingTags: ${{ needs.tag.outputs.existing-tags }}
228+
newTag: ${{ needs.tag.outputs.new-tag }}
229229
prefix: >-
230230
${{ env.REGISTRY }}${{ env.SINGLEUSER }}:
231231
${{ (env.PUBLIC == 'true' && env.PUBLISH_DOCKERIO == 'true') && format('{0}:', env.SINGLEUSER) || '' }}

0 commit comments

Comments
 (0)