diff options
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/dist.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/aux/workflow/dist.sh b/aux/workflow/dist.sh index 8111b34..c1c0342 100755 --- a/aux/workflow/dist.sh +++ b/aux/workflow/dist.sh @@ -87,13 +87,13 @@ if [ "$publish" = 'n' ]; then cat <<EOF >&2 Now push the tag and the signature before pushing the commit: -git push origin refs/notes/signatures/tar.gz -o skip-ci --no-verify -git push --tags -o skip-ci --no-verify +git push origin refs/notes/signatures/tar.gz -o ci.skip --no-verify +git push --tags -o ci.skip --no-verify git push EOF else - git push origin refs/notes/signatures/tar.gz -o skip-ci --no-verify - git push --tags -o skip-ci --no-verify + git push origin refs/notes/signatures/tar.gz -o ci.skip --no-verify + git push --tags -o ci.skip --no-verify git push fi |