Skip to content

Commit

Permalink
Attempt to fix git-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed Aug 8, 2024
1 parent 0b2880f commit 53a17a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
python -m build . --sdist --wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
- name: Upload compiled wheels
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -66,6 +68,7 @@ jobs:
runs-on: ubuntu-latest
needs: [python-package, windows-installer]
steps:
- uses: actions/checkout@v4
- name: Download installer
uses: actions/download-artifact@v4
with:
Expand All @@ -79,7 +82,8 @@ jobs:
CHANGELOG_FILE: "CHANGELOG.md"
with:
args: |
dist/*
dist/**/*.exe
dist/**/*.whl
build-streamlit-image:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 53a17a0

Please sign in to comment.