fix malformed path in docker publish (#2)
All checks were successful
ci/woodpecker/push/push Pipeline was successful

Co-authored-by: Madison Grubb <madison@elastiflow.com>
Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-02-12 20:27:03 +00:00
parent 28ac43e47b
commit 547b94bac8
2 changed files with 20 additions and 24 deletions

View File

@@ -1,3 +1,6 @@
when:
- event: pull_request
steps:
- name: lint
image: node:24-slim
@@ -5,8 +8,6 @@ steps:
commands:
- npm ci
- npm run lint
when:
- event: pull_request
- name: test
image: node:24-slim
@@ -14,8 +15,6 @@ steps:
commands:
- npm ci
- npm run test
when:
- event: pull_request
- name: e2e
image: mcr.microsoft.com/playwright:v1.58.2-noble
@@ -26,33 +25,14 @@ steps:
- npm run test:e2e
environment:
NODE_TLS_REJECT_UNAUTHORIZED: "0"
when:
- event: pull_request
- name: docker-build
image: woodpeckerci/plugin-kaniko
depends_on: []
settings:
repo: git.keligrubb.com/${CI_REPO_OWNER}/${CI_REPO_NAME}
repo: ${CI_REPO_OWNER}/${CI_REPO_NAME}
registry: git.keligrubb.com
tags: latest
dry-run: true
single-snapshot: true
cleanup: true
when:
- event: pull_request
- name: docker-build-push
image: woodpeckerci/plugin-kaniko
settings:
repo: git.keligrubb.com/${CI_REPO_OWNER}/${CI_REPO_NAME}
registry: git.keligrubb.com
tags: latest,${CI_COMMIT_SHA:0:7}
username: ${CI_REPO_OWNER}
password:
from_secret: gitea_registry_token
single-snapshot: true
cleanup: true
when:
- event: push
branch: main

16
.woodpecker/push.yml Normal file
View File

@@ -0,0 +1,16 @@
when:
- event: push
branch: main
steps:
- name: docker-build-push
image: woodpeckerci/plugin-kaniko
settings:
repo: ${CI_REPO_OWNER}/${CI_REPO_NAME}
registry: git.keligrubb.com
tags: latest,${CI_COMMIT_SHA:0:7}
username: ${CI_REPO_OWNER}
password:
from_secret: gitea_registry_token
single-snapshot: true
cleanup: true