f3-rs/.woodpecker.yml
Aravinth Manivannan d6aaac3f4a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
fix: CI only publish on master
2023-10-24 19:47:44 +05:30

18 lines
458 B
YAML

steps:
test:
image: rust
commands:
- rustup component add rustfmt
- rustup component add clippy
- make lint
- make test
- make doc
publish:
image: python
when:
event: [push, tag, deployment]
branch: master
commands:
- apt update && apt-get -y --no-install-recommends install tar gpg curl wget git
- make ci-deploy
secrets: [ GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET ]