Skip to content

Commit 9445dbf

Browse files
authored
Merge pull request #1 from Kong/chore/setup
chore(setup): various setup chores
2 parents b389edc + cd01251 commit 9445dbf

File tree

5 files changed

+4
-44
lines changed

5 files changed

+4
-44
lines changed

.github/template-sync.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.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/template-github-release
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/template-github-release: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

.github/workflows/sync.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.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/template-github-release.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 ?= template-github-release
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)