Skip to content

dev container

dev container #63

Workflow file for this run

name: Pip
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install
run: |
pip install twine setuptools
- name: Build
run: |
python setup.py sdist
- name: Upload
env:
PIP_USERNAME: ${{ secrets.PIP_USERNAME }}
PIP_PASSWORD: ${{ secrets.PIP_PASSWORD }}
run: |
python -m twine upload dist/* --username ${PIP_USERNAME} --password ${PIP_PASSWORD} --skip-existing