From 587c6d4778ede99e125ec9f154f7280fa6877e62 Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Thu, 18 Oct 2018 21:14:25 +0200 Subject: [PATCH] --allow-dirty to deal with the extra files we copy in It's not super pretty, but it should work ok. --- rust-bindings/rust/.gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust-bindings/rust/.gitlab-ci.yml b/rust-bindings/rust/.gitlab-ci.yml index 634f1cd2..a05850d6 100644 --- a/rust-bindings/rust/.gitlab-ci.yml +++ b/rust-bindings/rust/.gitlab-ci.yml @@ -63,12 +63,12 @@ publish_libostree-sys: stage: publish script: - make pre-package - - cargo publish --verbose --manifest-path libostree-sys/Cargo.toml --token $CRATES_IO_TOKEN + - cargo publish --verbose --manifest-path libostree-sys/Cargo.toml --allow-dirty --token $CRATES_IO_TOKEN when: manual publish_libostree: stage: publish script: - make pre-package - - cargo publish --verbose --manifest-path libostree/Cargo.toml --token $CRATES_IO_TOKEN + - cargo publish --verbose --manifest-path libostree/Cargo.toml --allow-dirty --token $CRATES_IO_TOKEN when: manual