Skip to content

Commit

Permalink
fix(cicd): Correct flit behaviour to just work (#32)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Butler <chris.butler@redhat.com>
  • Loading branch information
butler54 authored Nov 7, 2023
1 parent fe6829a commit 9efee45
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/flit-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,16 @@ jobs:
- name: Install flit
run: |
pip install flit>=3.9.0
- name: Build and publish
run: |
flit publish
flit publish --no-use-vcs
env:
FLIT_USERNAME: __token__
FLIT_PASSWORD: ${{ secrets.PYPI_KEY }}

- name: check files
if: always()
run: |
ls -alh
ls -alh *.*

0 comments on commit 9efee45

Please sign in to comment.