index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2022-02-12 16:29:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 22:29:12 +0100 |
commit | 532f0fdc3a8a2deb655182b4acf946f715f8e636 (patch) | |
tree | 055037609f3ae1d7dde5afa432a18e03b84ce626 /.github/workflows/python-publish.yml | |
parent | c3310d01b76c4adc7194cd9300bf0a12595a355f (diff) |
-rw-r--r-- | .github/workflows/python-publish.yml | 13 |
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 2a261618..3d0ec253 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -21,10 +21,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools wheel flit - - name: Build and publish + pip install build twine + - name: Build archinstall + run: | + python -m build + - name: Publish archinstall to PyPi env: - FLIT_USERNAME: ${{ secrets.PYPI_USERNAME }} - FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - flit publish + twine upload dist/* |