refactor: file structure

This commit is contained in:
JasterV 2026-03-07 02:07:38 +01:00
parent 1b54f8fa48
commit c4f598ccc8
8 changed files with 8 additions and 8 deletions

View file

@ -2,7 +2,7 @@ when:
event: [push, manual]
branch: main
path:
["release-plz/base.Dockerfile", ".woodpecker/publish-release-plz-image.yml"]
["rust/release-plz.Dockerfile", ".woodpecker/publish-release-plz-image.yml"]
steps:
build-latest-container:
@ -13,5 +13,5 @@ steps:
password:
from_secret: CONTAINER_REGISTRY_TOKEN
repo: codeberg.org/jasterv/release-plz
dockerfile: "release-plz/base.Dockerfile"
dockerfile: "rust/release-plz.Dockerfile"
tags: 0.3.156,0.3,latest

View file

@ -3,8 +3,8 @@ when:
branch: main
path:
[
"release-plz/update-pr.Dockerfile",
"release-plz/update-pr.sh",
"rust/release-plz-update-pr.Dockerfile",
"rust/scripts/update-pr.sh",
".woodpecker/publish-release-plz-update-pr-image.yml",
]
@ -17,5 +17,5 @@ steps:
password:
from_secret: CONTAINER_REGISTRY_TOKEN
repo: codeberg.org/jasterv/release-plz-update-pr
dockerfile: "release-plz/update-pr.Dockerfile"
dockerfile: "rust/release-plz-update-pr.Dockerfile"
tags: 0.3.156,0.3,latest

View file

@ -4,7 +4,7 @@ when:
path:
[
"rust/magic-release.Dockerfile",
"rust/magic-release.sh",
"rust/scripts/magic-release.sh",
".woodpecker/publish-rust-magic-release-image.yml",
]

View file

@ -10,7 +10,7 @@ RUN apk add --no-cache \
gcc \
jq
COPY rust/magic-release.sh /usr/local/bin/magic-release
COPY rust/scripts/magic-release.sh /usr/local/bin/magic-release
RUN chmod +x /usr/local/bin/magic-release

View file

@ -1,6 +1,6 @@
FROM jasterv/release-plz:0.3.156
COPY release-plz/update-pr.sh /usr/local/bin/update-pr
COPY rust/scripts/update-pr.sh /usr/local/bin/update-pr
RUN chmod +x /usr/local/bin/update-pr