24 lines
No EOL
706 B
YAML
24 lines
No EOL
706 B
YAML
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 |