Skip to content

Commit cd01251

Browse files
committed
chore(setup): upon further consideration rename this repository
1 parent b1049bc commit cd01251

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
id: meta
5959
uses: docker/metadata-action@v4
6060
with:
61-
images: ghcr.io/kong/kong-openresty
61+
images: ghcr.io/kong/kong-runtime
6262
sep-tags: ' '
6363
flavor: |
6464
suffix=-${{ matrix.architecture }}-${{ matrix.ostype }}
@@ -71,7 +71,7 @@ jobs:
7171
if: ${{ needs.release.outputs.published == 'true' }}
7272
run: |
7373
for tag in ${{ steps.meta.outputs.tags }}; do \
74-
docker tag ghcr.io/kong-openresty:build-$ARCHITECTURE-$OSTYPE $tag && \
74+
docker tag ghcr.io/kong-runtime:build-$ARCHITECTURE-$OSTYPE $tag && \
7575
docker push $tag; \
7676
done
7777
- name: Archive the package

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"branches": ["main"],
33
"tagFormat": "${version}",
4-
"repositoryUrl": "https://github.com/kong/kong-openresty.git",
4+
"repositoryUrl": "https://github.com/kong/kong-runtime.git",
55
"plugins": [
66
[
77
"@semantic-release/commit-analyzer",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARCHITECTURE ?= x86_64
22
OSTYPE ?= linux-gnu
33
DOCKER_TARGET ?= build
44
DOCKER_REGISTRY ?= ghcr.io
5-
DOCKER_IMAGE_NAME ?= kong-openresty
5+
DOCKER_IMAGE_NAME ?= kong-runtime
66
DOCKER_IMAGE_TAG ?= $(DOCKER_TARGET)-$(ARCHITECTURE)-$(OSTYPE)
77
DOCKER_NAME ?= $(DOCKER_REGISTRY)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)
88
DOCKER_RESULT ?= --load

0 commit comments

Comments
 (0)