TravisCI:新标签后无pypi部署

时间:2019-08-15 11:05:39

标签: deployment travis-ci pypi

我添加了一个新标签并推送了更改。在TravisCI上,我可以看到:

$ rvm $(travis_internal_ruby) --fuzzy do ruby -S gem install dpl
12.44s
dpl.1
Installing deploy dependencies
dpl.2
Preparing deploy
Logged in as Yves Chevallier
Deploying to repo: heig-vd-tin/sphinx-heigvd-theme
Current tag is: 0.5.1
dpl.3
Deploying application
Setting target_commitish to 74778b3e2c67d53feac20af148afdc2e1672f7c2

我的deploymement配置如下:

deploy:
  - provider: releases
    api_key:
      secure: aQfM0IIsFSvqk...VLdaAc=
    skip_cleanup: true
    file_glob: true
    file: ./dist/*
    on:
      tags: true
  - provider: pypi
    user: my-pypi-username
    distributions: sdist bdist_wheel
    password:
      secure: K0XYNnK6FV+YqeeUDsZ1SYbtj9w....MYS8tLw=
    on:
      tags: true

但是,我没有致力于PyPi。

如何调试它?

0 个答案:

没有答案