Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit 8facb4d

Browse files
Change everything back to the production 'seleniarm' Docker credentials and namespace.
1 parent bcf1393 commit 8facb4d

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.circleci/config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
type: string
201201
executor: << parameters.machine-type >>
202202
environment:
203-
NAMESPACE: jamesmortensen1
203+
NAMESPACE: seleniarm
204204
PLATFORMS: << parameters.platforms >>
205205
BUILD_ARGS: << parameters.build-args >>
206206
MAKE_TARGETS: << parameters.make-targets >>
@@ -265,7 +265,7 @@ jobs:
265265
echo "Login to Docker, and setup to use a buildx builder and push built multi-arch images"
266266
docker buildx use `docker buildx create`
267267
docker buildx ls
268-
docker login -u="$DOCKER_TEST_USERNAME" -p="$DOCKER_TEST_PASSWORD"
268+
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
269269
echo BRANCH="$BRANCH"
270270
echo BUILD_DATE="$BUILD_DATE"
271271
echo RELEASE_TAG="$RELEASE_TAG"
@@ -317,17 +317,17 @@ workflows:
317317
platforms: linux/amd64
318318
machine-type: ubuntu2004amd64
319319

320-
deploy-multi-arch:
321-
jobs:
322-
- deploy-multi-arch:
323-
name: deploy-multi-arch
324-
platforms: linux/arm64,linux/amd64,linux/arm/v7
325-
build-args: --push
326-
machine-type: ubuntu2004arm64
327-
filters:
328-
branches:
329-
only:
330-
- trunk
320+
# deploy-multi-arch:
321+
# jobs:
322+
# - deploy-multi-arch:
323+
# name: deploy-multi-arch
324+
# platforms: linux/arm64,linux/amd64,linux/arm/v7
325+
# build-args: --push
326+
# machine-type: ubuntu2004arm64
327+
# filters:
328+
# branches:
329+
# only:
330+
# - trunk
331331

332332
deploy-multi-arch-full-grid:
333333
jobs:

build-and-push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
NAME="${NAME:-jamesmortensen1}"
3+
NAME="${NAME:-seleniarm}"
44
VERSION="${VERSION:-4.7.2}"
55
BUILD_DATE="${BUILD_DATE:-$(date '+%Y%m%d')}"
66
PLATFORMS="${PLATFORMS:-linux/arm64,linux/arm/v7,linux/amd64}"

generate_multi-arch-release_notes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ echo "<details>" >> release_notes.md
7272
echo "<summary>Click to see published Docker images</summary>" >> release_notes.md
7373
echo "" >> release_notes.md
7474
echo '```' >> release_notes.md
75-
docker images --filter=reference="jamesmortensen1/*:*" --format "table {{.ID}}\t{{.Repository}}\t{{.Tag}}\t{{.Size}}" >> release_notes.md
75+
docker images --filter=reference="seleniarm/*:*" --format "table {{.ID}}\t{{.Repository}}\t{{.Tag}}\t{{.Size}}" >> release_notes.md
7676
echo '```' >> release_notes.md
7777
echo "" >> release_notes.md
7878
echo "</details>" >> release_notes.md

0 commit comments

Comments
 (0)