Skip to content
Snippets Groups Projects
Verified Commit 062249f1 authored by David Runge's avatar David Runge :chipmunk:
Browse files

ci(.gitlab-ci.yml): Add job to publish to crates.io in tag pipeline

Add `publish` stage and add `crates_publish` job to it to publish to
crates.io.
Use the `ci-publish` just recipe to publish to crates.io when
in tag pipeline (`CI_COMMIT_TAG` is set) and a crates.io token
(`CARGO_REGISTRY_TOKEN`) is present.

Fixes #55



Signed-off-by: default avatarDavid Runge <dvzrv@archlinux.org>
parent b0dfc6bf
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ variables:
stages:
- check
- test
- publish
check-commits:
before_script:
......@@ -62,3 +63,18 @@ integration-test:
stage: test
tags:
- vm
crates_publish:
before_script:
- pacman-key --init
- pacman -Sy --needed --noconfirm archlinux-keyring
- source .env && pacman -Syu --needed --noconfirm $PACMAN_PACKAGES
- just install-rust-dev-tools
dependencies: []
rules:
- if: '$CARGO_REGISTRY_TOKEN && $CI_COMMIT_TAG && $CI_PROJECT_PATH == "archlinux/signstar"'
script:
- just ci-publish
stage: publish
tags:
- secure
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment