Skip to content

Commit

Permalink
fix: use username and password env vars for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed May 30, 2024
1 parent 2afa326 commit b6be599
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- name: Publish Core to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}
skip-existing: true
packages-dir: dist/

Expand Down Expand Up @@ -63,8 +63,8 @@ jobs:
- name: Publish ${{ matrix.package }} to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}
skip-existing: true
packages-dir: plugins/${{ matrix.package }}/dist/

Expand Down

0 comments on commit b6be599

Please sign in to comment.