Promote Server Image #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Promote Server Image | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| source-tag: | |
| description: "Source tag from temporaliotest registry (e.g. sha-abc123)" | |
| required: true | |
| target-tags: | |
| description: "Target tags for temporalio registry (comma or newline separated, e.g., 1.29.1, latest)" | |
| required: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| promote: | |
| uses: ./.github/workflows/promote-docker-image.yml | |
| with: | |
| image-name: server | |
| source-tag: ${{ inputs.source-tag }} | |
| target-tags: ${{ inputs.target-tags }} | |
| secrets: | |
| DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
| DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |