We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b5f8b commit 80aa4e0Copy full SHA for 80aa4e0
.github/workflows/publish.yml
@@ -9,10 +9,15 @@ on:
9
10
jobs:
11
publish:
12
- uses: ./.github/workflows/.hatch-run.yml
13
- with:
14
- job-name: "publish"
15
- hatch-run: "publish"
16
- secrets:
17
- pypi-username: ${{ secrets.PYPI_USERNAME }}
18
- pypi-password: ${{ secrets.PYPI_PASSWORD }}
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.x
+ - run: pip install hatch
19
+ - run: hatch build
20
+ - run: hatch publish
21
+ env:
22
+ HATCH_INDEX_USER: ${{ secrets.PYPI_USERNAME }}
23
+ HATCH_INDEX_AUTH: ${{ secrets.PYPI_PASSWORD }}
0 commit comments