Skip to content

Commit 3a9a5b2

Browse files
committed
Switch to temporalio org, main tag.
1 parent 294d2ff commit 3a9a5b2

File tree

2 files changed

+18
-21
lines changed

2 files changed

+18
-21
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
uses: goreleaser/goreleaser-action@336e29918d653399e599bfca99fadc1d7ffbc9f7 # v4.3.0
4040
with:
4141
version: v2.11.2
42-
args: release --config .goreleaser.test.yml --snapshot --clean
42+
args: release --config .goreleaser.main.yml --snapshot --clean
4343

4444
- name: Push snapshot images
4545
run: |
46-
docker push "temporaliotest/temporal-worker-controller:latest-amd64"
47-
docker push "temporaliotest/temporal-worker-controller:latest-arm64"
46+
docker push "temporalio/temporal-worker-controller:main-amd64"
47+
docker push "temporalio/temporal-worker-controller:main-arm64"
4848
49-
- name: Create and push manifest for :latest tag
49+
- name: Create and push manifest for :main tag
5050
run: |
51-
docker manifest create "temporaliotest/temporal-worker-controller:latest" "temporaliotest/temporal-worker-controller:latest-amd64" "temporaliotest/temporal-worker-controller:latest-arm64"
52-
docker manifest push "temporaliotest/temporal-worker-controller:latest"
51+
docker manifest create "temporalio/temporal-worker-controller:main" "temporalio/temporal-worker-controller:main-amd64" "temporalio/temporal-worker-controller:main-arm64"
52+
docker manifest push "temporalio/temporal-worker-controller:main"
Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
version: 2
22

3-
env:
4-
- GITHUB_REPOSITORY={{ if index .Env "GITHUB_REPOSITORY" }}{{ .Env.GITHUB_REPOSITORY }}{{ else }}temporalio/temporal-worker-controller{{ end }}
5-
63
before:
74
hooks:
85
- go mod download
@@ -33,44 +30,44 @@ builds:
3330
checksum:
3431
disable: true
3532

36-
# Only build Docker images with 'latest' tag
33+
# Only build Docker images with 'main' tag
3734
dockers:
3835
- image_templates:
39-
- "temporaliotest/temporal-worker-controller:latest-amd64"
36+
- "temporalio/temporal-worker-controller:main-amd64"
4037
dockerfile: Dockerfile.goreleaser
4138
use: buildx
4239
build_flag_templates:
4340
- --platform=linux/amd64
4441
- --label=org.opencontainers.image.title={{ .ProjectName }}
4542
- --label=org.opencontainers.image.description=Temporal Worker Controller for Kubernetes
46-
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.GITHUB_REPOSITORY }}
47-
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.GITHUB_REPOSITORY }}
48-
- --label=org.opencontainers.image.version=latest
43+
- --label=org.opencontainers.image.url=https://github.com/temporalio/temporal-worker-controller
44+
- --label=org.opencontainers.image.source=https://github.com/temporalio/temporal-worker-controller
45+
- --label=org.opencontainers.image.version=main
4946
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
5047
- --label=org.opencontainers.image.revision={{ .FullCommit }}
5148
- --label=org.opencontainers.image.licenses=MIT
5249
extra_files:
5350
- LICENSE
5451

5552
- image_templates:
56-
- "temporaliotest/temporal-worker-controller:latest-arm64"
53+
- "temporalio/temporal-worker-controller:main-arm64"
5754
dockerfile: Dockerfile.goreleaser
5855
use: buildx
5956
build_flag_templates:
6057
- --platform=linux/arm64
6158
- --label=org.opencontainers.image.title={{ .ProjectName }}
6259
- --label=org.opencontainers.image.description=Temporal Worker Controller for Kubernetes
63-
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.GITHUB_REPOSITORY }}
64-
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.GITHUB_REPOSITORY }}
65-
- --label=org.opencontainers.image.version=latest
60+
- --label=org.opencontainers.image.url=https://github.com/temporalio/temporal-worker-controller
61+
- --label=org.opencontainers.image.source=https://github.com/temporalio/temporal-worker-controller
62+
- --label=org.opencontainers.image.version=main
6663
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
6764
- --label=org.opencontainers.image.revision={{ .FullCommit }}
6865
- --label=org.opencontainers.image.licenses=MIT
6966
extra_files:
7067
- LICENSE
7168

7269
docker_manifests:
73-
- name_template: "temporaliotest/temporal-worker-controller:latest"
70+
- name_template: "temporalio/temporal-worker-controller:main"
7471
image_templates:
75-
- "temporaliotest/temporal-worker-controller:latest-amd64"
76-
- "temporaliotest/temporal-worker-controller:latest-arm64"
72+
- "temporalio/temporal-worker-controller:main-amd64"
73+
- "temporalio/temporal-worker-controller:main-arm64"

0 commit comments

Comments
 (0)