23 lines
576 B
YAML
23 lines
576 B
YAML
when:
|
|
- event: push
|
|
|
|
steps:
|
|
- name: docker-build
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
dockerfile: .woodpecker/Dockerfile
|
|
registry: git.firechicken.net
|
|
repo: fedichat/rust_builder
|
|
username:
|
|
from_secret: OCI_USER
|
|
password:
|
|
from_secret: OCI_TOKEN
|
|
|
|
- name: build
|
|
image: git.firechicken.net/fedichat/rust_builder:latest
|
|
pull: true
|
|
#entrypoint: ["/bin/bash","-x", "-c", "echo $CI_SCRIPT | base64 -d | /bin/bash -e"]
|
|
#entrypoint: ["/bin/bash","-c", "echo $PATH"]
|
|
commands:
|
|
- cargo build
|