A cli program to easily handle .gitignore files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
498 B

  1. kind: pipeline
  2. name: default
  3. type: docker
  4. steps:
  5. - name: test
  6. image: rust:latest
  7. commands:
  8. - cargo install just
  9. - just test
  10. - name: build
  11. image: rust:alpine
  12. commands:
  13. - cargo install just
  14. - just dist
  15. when:
  16. event:
  17. - tag
  18. - name: gitea_release
  19. image: plugins/gitea-release
  20. settings:
  21. api_key:
  22. from_secret: api_key
  23. base_url: https://git.schneider-hosting.de
  24. files: dist/*
  25. when:
  26. event:
  27. - tag
  28. depends_on:
  29. - build