Skip to main content

GitLab CI

Automate releases with GitLab CI/CD

Basic pipeline

# .gitlab-ci.yml
release:
  stage: deploy
  image: rust:latest
  only:
    - tags
  script:
    - cargo install anodizer
    - anodizer release
  variables:
    GITHUB_TOKEN: $GITHUB_TOKEN

Note: Even when using GitLab CI, releases are currently created on GitHub. GitLab release support is planned for a future version.