packager/.woodpecker.yml
2023-10-14 22:39:45 +02:00

33 lines
No EOL
853 B
YAML

when:
event: push
path:
include:
- "pkgr/**"
- "bootpkg/**"
- "pkgfile/**"
- "pkg/**"
- "manifest/**"
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
when:
event: tag