packager/.woodpecker.yml
Didier a3cddf7946
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
ci: always release and less verbose
2023-08-01 21:04:40 +02:00

35 lines
No EOL
852 B
YAML

when:
event:
- push
- manual
path:
include:
- "pkgr/**"
- "bootpkg/**"
- "pkgfile/**"
- "pkg/**"
- "manifest/**"
steps:
check: # check if the code compiles
image: rust
commands:
- cargo check --release --manifest-path bootpkg/Cargo.toml --all
- cargo check --release --manifest-path pkgr/Cargo.toml --all
build:
image: rust
commands:
- cargo build --release --manifest-path bootpkg/Cargo.toml --all
- cargo build --release --manifest-path pkgr/Cargo.toml --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
when:
event: tag