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