Commit 078780c7 authored by Yamada Hiroyuki's avatar Yamada Hiroyuki
Browse files

Fix upload step

- Install twine
- Remove continue-on-error
parent 6084d57d
Loading
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -71,9 +71,10 @@ jobs:
          name: dist-${{ matrix.runs-on }}
          path: dist
      - name: Upload to PyPI
        run: python -m twine upload -u __token__ -p ${{ secrets.pypi_password }} --skip-existing dist/cpprb-*
        run: |
          pip install twine
          python -m twine upload -u __token__ -p ${{ secrets.pypi_password }} --skip-existing dist/cpprb-*
        if: github.event_name == 'push' && startsWith(github.event.ref,'refs/tags/v')
        continue-on-error: true
  build_targz:
    needs: readme
    runs-on: ubuntu-latest