Skip to content

Commit

Permalink
bump version, simplify deploy action.
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorSheehan1 committed Apr 13, 2020
1 parent 6b9d927 commit f504f7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,13 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3
- name: Install Pipenv
- name: Install flit
run: |
python -m pip install --upgrade pip
pip install pipenv
# must be in it's own step, see https://github.com/actions/runner/issues/258
- name: Install python packages
run: |
pipenv install --verbose --dev --skip-lock
- name: Build dist
run: |
pipenv run flit build
pip install flit
- name: Publish to pypi
env:
FLIT_USERNAME: __token__
FLIT_PASSWORD: ${{ secrets.osxdocker_pypi_api_token }}
run: |
pipenv run flit publish
flit publish
2 changes: 1 addition & 1 deletion osxdocker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
A CLI for working with docker on OSX
"""

__version__ = "0.1.0"
__version__ = "0.1.1"


# Third party
Expand Down

0 comments on commit f504f7b

Please sign in to comment.