mirror of
https://github.com/lightsoutgames/bevy_full_throttle
synced 2024-11-10 02:55:56 +00:00
41 lines
954 B
YAML
41 lines
954 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: rust:bullseye
|
||
|
pull: always
|
||
|
commands:
|
||
|
- rustup component add clippy rustfmt
|
||
|
- cargo fmt --check
|
||
|
- cargo test
|
||
|
- cargo clippy
|
||
|
- name: release
|
||
|
image: rust:bullseye
|
||
|
pull: always
|
||
|
commands:
|
||
|
- cargo publish
|
||
|
when:
|
||
|
ref:
|
||
|
- refs/tags/v*
|
||
|
environment:
|
||
|
CARGO_REGISTRY_TOKEN:
|
||
|
from_secret: cargo_registry_token
|
||
|
- name: discord notification
|
||
|
image: appleboy/drone-discord
|
||
|
when:
|
||
|
status: [success, failure]
|
||
|
settings:
|
||
|
webhook_id:
|
||
|
from_secret: discord_webhook_id
|
||
|
webhook_token:
|
||
|
from_secret: discord_webhook_token
|
||
|
tts: true
|
||
|
message: >
|
||
|
{{#success build.status}}
|
||
|
{{repo.name}} build {{build.number}} succeeded: <{{build.link}}>
|
||
|
{{else}}
|
||
|
{{repo.name}} build {{build.number}} failed: <{{build.link}}>
|
||
|
{{/success}}
|