Skip to content

Commit

Permalink
chore: fix a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uwinx committed May 4, 2021
1 parent 2b15917 commit 2f2b1ca
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/released.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
run: |
echo "BUILD_VER=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Install python3.8, latest PIP, latest poetry
- name: Install python3.8
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install latest PIP, latest poetry
run: |
python install -m pip install -U pip
pip install -U poetry
Expand All @@ -31,5 +33,5 @@ jobs:
- name: Deliver a new release (first dry run)
run: |
poetry publish -r ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --dry-run
poetry publish -r ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }}
poetry publish -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --dry-run
poetry publish -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }}

0 comments on commit 2f2b1ca

Please sign in to comment.