-
Notifications
You must be signed in to change notification settings - Fork 60
47 lines (43 loc) · 1.22 KB
/
release-temporal.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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 }}
working-directory: ./src
run: go run ./image_copy/main.go