Skip to content

Commit

Permalink
先にリリースしておく
Browse files Browse the repository at this point in the history
  • Loading branch information
medaka0213 committed Apr 7, 2024
1 parent 4879fd4 commit d2d75e1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
version=$(poetry version -s)
echo "VERSION=$version" >> $GITHUB_ENV
- name: Publish package
env:
PYPI_LOCAL_USERNAME: __token__
PYPI_LOCAL_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
poetry build
poetry publish -u $PYPI_LOCAL_USERNAME -p $PYPI_LOCAL_PASSWORD
- name: Set up git
run: |
git config --local user.email "[email protected]"
Expand Down Expand Up @@ -78,14 +86,6 @@ jobs:
prerelease: false
body: ${{ steps.tag_version.outputs.changelog }}

- name: Publish package
env:
PYPI_LOCAL_USERNAME: __token__
PYPI_LOCAL_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
poetry build
poetry publish -u $PYPI_LOCAL_USERNAME -p $PYPI_LOCAL_PASSWORD
- name: Generate docs
run: |
cp ./readme.md ./docs_src/readme.md
Expand Down

0 comments on commit d2d75e1

Please sign in to comment.