Skip to content

Commit

Permalink
Update preview workflow
Browse files Browse the repository at this point in the history
Try to fix broken test pypi upload
  • Loading branch information
nnansters authored Sep 6, 2024
1 parent 522a3bc commit 63b3a4d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: write

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
publish_dev_build:
Expand Down Expand Up @@ -50,9 +53,9 @@ jobs:
poetry build
- name: publish to Test PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN}}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
skip-existing: true

0 comments on commit 63b3a4d

Please sign in to comment.