Release Temporal Images #71
This file contains 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: Release Temporal Images | |
permissions: read-all | |
on: | |
workflow_dispatch: | |
inputs: | |
commit: | |
description: "Commit sha" | |
required: true | |
tag: | |
description: "The tag for the new images" | |
required: true | |
latest: | |
type: boolean | |
description: "Also update latest tag" | |
required: true | |
default: false | |
major: | |
type: boolean | |
description: "Also update major tag" | |
required: true | |
default: false | |
jobs: | |
retag-and-release: | |
name: "Re-tag and release images" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "src/go.mod" | |
- name: Copy temporal images | |
env: | |
COMMIT: ${{ github.event.inputs.commit }} | |
TAG: ${{ github.event.inputs.tag }} | |
USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
PASSWORD: ${{ secrets.DOCKER_PAT }} | |
IMAGES: server auto-setup | |
SRC_REPO: temporaliotest | |
DST_REPO: temporalio | |
LATEST: ${{ github.event.inputs.latest }} | |
MAJOR: ${{ github.event.inputs.major }} | |
run: go run src/release_temporal/main.go | |
- name: Copy admintools images | |
uses: ./.github/workflows/release-admin-tools.yml | |
with: | |
commit: ${{ github.event.inputs.commit }} | |
latest: ${{ github.events.inputs.latest }} | |
major: ${{ github.events.inputs.major }} |