Skip to content

Commit

Permalink
+ hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Nov 14, 2023
1 parent 35ca30f commit 8b06cd8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,29 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: Build distribution
uses: |
python3 -m pip install -U pip
python3 -m pip install -U build --user
python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/


- name: Download distribution packages
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/

- name: Publish package distributions to PyPI
Expand Down

0 comments on commit 8b06cd8

Please sign in to comment.