packager/.woodpecker.yml

24 lines
706 B
YAML
Raw Normal View History

2023-10-14 22:39:45 +02:00
when:
event: push
steps:
check: # check if the code compiles
image: rust
commands:
- cargo check --manifest-path bootpkg/Cargo.toml --verbose --all
- cargo check --manifest-path pkgr/Cargo.toml --verbose --all
build:
image: rust
commands:
- cargo build --release --manifest-path bootpkg/Cargo.toml --verbose --all
- cargo build --release --manifest-path pkgr/Cargo.toml --verbose --all
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.ixvd.net
files:
- "bootpkg/target/release/bootpkg"
- "pkgr/target/release/pkgr"
api_key:
from_secret: GITEA_ACCESS_TOKEN
target: main