Skip to content

Commit

Permalink
Merge pull request #4 from open-networks/pypi
Browse files Browse the repository at this point in the history
version fix
  • Loading branch information
flokain authored Jun 25, 2021
2 parents ef942e0 + eaaa412 commit d8df7ca
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@ jobs:

steps:
- name: print release value
run: echo $GITHUB_REF
run: |
echo $GITHUB_REF
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
env:
GITHUB_RELEASE_TAG: ${{github.event.release.tag_name}}
run: |
run:
python -m pip install --upgrade pip
pip install build
- name: Build package
env:
GITHUB_RELEASE_TAG: ${{github.event.release.tag_name}}
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
Expand Down

0 comments on commit d8df7ca

Please sign in to comment.