Merge pull request 'fix: deploy docs only on master' (#7) from fix-ci-deploy into master
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Reviewed-on: #7
This commit is contained in:
Aravinth Manivannan 2024-06-08 01:55:07 +05:30
commit 87e8b437c2

View file

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