You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: cli-publish
- on:
- workflow_run:
- workflows:
- - "cli-test"
- branches:
- - main
- types:
- - completed
- jobs:
- publish:
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
- runs-on: ubuntu-18.04
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-python@v2
- with:
- python-version: "3.6"
- - run: |
- cd cli
- ./deploy
- continue-on-error: true
- env:
- TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|