3131 type : boolean
3232 required : true
3333 default : true
34- publish_manifest_runner :
35- description : " Publish Manifest Runner to DockerHub. If true, the workflow will publish the Manifest Runner to DockerHub."
34+ publish_manifest_server :
35+ description : " Publish Manifest Server to DockerHub. If true, the workflow will publish the Manifest Server to DockerHub."
3636 type : boolean
3737 required : true
3838 default : true
@@ -255,19 +255,19 @@ jobs:
255255 tags : |
256256 airbyte/source-declarative-manifest:latest
257257
258- publish_manifest_runner :
259- name : Publish Manifest Runner to DockerHub
258+ publish_manifest_server :
259+ name : Publish Manifest Server to DockerHub
260260 if : >
261261 (github.event_name == 'push' &&
262262 startsWith(github.ref, 'refs/tags/v')) ||
263263 (github.event_name == 'workflow_dispatch' &&
264- github.event.inputs.publish_manifest_runner == 'true'
264+ github.event.inputs.publish_manifest_server == 'true'
265265 )
266266 runs-on : ubuntu-24.04
267267 needs : [build]
268268 environment :
269269 name : DockerHub
270- url : https://hub.docker.com/r/airbyte/manifest-runner /tags
270+ url : https://hub.docker.com/r/airbyte/manifest-server /tags
271271 env :
272272 VERSION : ${{ needs.build.outputs.VERSION }}
273273 IS_PRERELEASE : ${{ needs.build.outputs.IS_PRERELEASE }}
@@ -299,7 +299,7 @@ jobs:
299299 - name : " Check for existing tag (version: ${{ env.VERSION || 'none' }} )"
300300 if : env.VERSION != ''
301301 run : |
302- tag="airbyte/manifest-runner :${{ env.VERSION }}"
302+ tag="airbyte/manifest-server :${{ env.VERSION }}"
303303 if [ -z "$tag" ]; then
304304 echo "Error: VERSION is not set. Ensure the tag follows the format 'refs/tags/vX.Y.Z'."
305305 exit 1
@@ -317,35 +317,35 @@ jobs:
317317 uses : docker/build-push-action@v5
318318 with :
319319 context : .
320- file : airbyte_cdk/manifest_runner /Dockerfile
320+ file : airbyte_cdk/manifest_server /Dockerfile
321321 platforms : linux/amd64,linux/arm64
322322 push : true
323323 tags : |
324- airbyte/manifest-runner :${{ github.sha }}
324+ airbyte/manifest-server :${{ github.sha }}
325325
326326 - name : " Build and push (version tag: ${{ env.VERSION || 'none'}})"
327327 # Only run if the version is set
328328 if : env.VERSION != ''
329329 uses : docker/build-push-action@v5
330330 with :
331331 context : .
332- file : airbyte_cdk/manifest_runner /Dockerfile
332+ file : airbyte_cdk/manifest_server /Dockerfile
333333 platforms : linux/amd64,linux/arm64
334334 push : true
335335 tags : |
336- airbyte/manifest-runner :${{ env.VERSION }}
336+ airbyte/manifest-server :${{ env.VERSION }}
337337
338338 - name : Build and push ('latest' tag)
339339 # Only run if version is set and IS_PRERELEASE is false
340340 if : env.VERSION != '' && env.IS_PRERELEASE == 'false'
341341 uses : docker/build-push-action@v5
342342 with :
343343 context : .
344- file : airbyte_cdk/manifest_runner /Dockerfile
344+ file : airbyte_cdk/manifest_server /Dockerfile
345345 platforms : linux/amd64,linux/arm64
346346 push : true
347347 tags : |
348- airbyte/manifest-runner :latest
348+ airbyte/manifest-server :latest
349349
350350 update-connector-builder :
351351 # Create a PR against the Builder, to update the CDK version that it uses.
0 commit comments