Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranberg committed Feb 21, 2021
1 parent 2f23bd1 commit 50349e7
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 34 deletions.
33 changes: 16 additions & 17 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: PyPi bdist

on:
Expand All @@ -13,19 +12,19 @@ jobs:
os: [ubuntu-latest, macos-latest]
python-version: [3.8]

steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PLINKIO_PYPI_TOKEN }}
run: |
python setup.py bdist_wheel
twine upload dist/*
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PLINKIO_PYPI_TOKEN }}
run: |
python setup.py bdist_wheel
twine upload dist/*
32 changes: 16 additions & 16 deletions .github/workflows/pypi_source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PLINKIO_PYPI_TOKEN }}
run: |
python setup.py sdist
twine upload dist/*
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PLINKIO_PYPI_TOKEN }}
run: |
python setup.py sdist
twine upload dist/*
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package
name: Lint and test

on:
push:
Expand Down

0 comments on commit 50349e7

Please sign in to comment.