mirror of
https://codeberg.org/JasterV/docker.git
synced 2026-04-26 18:10:02 +00:00
refactor: file structure
This commit is contained in:
parent
1b54f8fa48
commit
c4f598ccc8
8 changed files with 8 additions and 8 deletions
|
|
@ -2,7 +2,7 @@ when:
|
||||||
event: [push, manual]
|
event: [push, manual]
|
||||||
branch: main
|
branch: main
|
||||||
path:
|
path:
|
||||||
["release-plz/base.Dockerfile", ".woodpecker/publish-release-plz-image.yml"]
|
["rust/release-plz.Dockerfile", ".woodpecker/publish-release-plz-image.yml"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
build-latest-container:
|
build-latest-container:
|
||||||
|
|
@ -13,5 +13,5 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: CONTAINER_REGISTRY_TOKEN
|
from_secret: CONTAINER_REGISTRY_TOKEN
|
||||||
repo: codeberg.org/jasterv/release-plz
|
repo: codeberg.org/jasterv/release-plz
|
||||||
dockerfile: "release-plz/base.Dockerfile"
|
dockerfile: "rust/release-plz.Dockerfile"
|
||||||
tags: 0.3.156,0.3,latest
|
tags: 0.3.156,0.3,latest
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ when:
|
||||||
branch: main
|
branch: main
|
||||||
path:
|
path:
|
||||||
[
|
[
|
||||||
"release-plz/update-pr.Dockerfile",
|
"rust/release-plz-update-pr.Dockerfile",
|
||||||
"release-plz/update-pr.sh",
|
"rust/scripts/update-pr.sh",
|
||||||
".woodpecker/publish-release-plz-update-pr-image.yml",
|
".woodpecker/publish-release-plz-update-pr-image.yml",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
@ -17,5 +17,5 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: CONTAINER_REGISTRY_TOKEN
|
from_secret: CONTAINER_REGISTRY_TOKEN
|
||||||
repo: codeberg.org/jasterv/release-plz-update-pr
|
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
|
tags: 0.3.156,0.3,latest
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ when:
|
||||||
path:
|
path:
|
||||||
[
|
[
|
||||||
"rust/magic-release.Dockerfile",
|
"rust/magic-release.Dockerfile",
|
||||||
"rust/magic-release.sh",
|
"rust/scripts/magic-release.sh",
|
||||||
".woodpecker/publish-rust-magic-release-image.yml",
|
".woodpecker/publish-rust-magic-release-image.yml",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ RUN apk add --no-cache \
|
||||||
gcc \
|
gcc \
|
||||||
jq
|
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
|
RUN chmod +x /usr/local/bin/magic-release
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
FROM jasterv/release-plz:0.3.156
|
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
|
RUN chmod +x /usr/local/bin/update-pr
|
||||||
|
|
||||||
Loading…
Reference in a new issue