Skip to content

Commit 4669a82

Browse files
committed
Try to make this work
1 parent 30fcfe8 commit 4669a82

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
run: |
2929
poetry version ${{github.ref_name}}
3030
poetry build
31+
- uses: actions/upload-artifact@v3
32+
with:
33+
path: ./dist
3134
pypi-publish:
3235
name: Upload release to PyPI
3336
runs-on: ubuntu-latest
@@ -37,6 +40,8 @@ jobs:
3740
permissions:
3841
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
3942
steps:
40-
# retrieve your distributions here
43+
- uses: actions/download-artifact@v3
4144
- name: Publish package distributions to PyPI
42-
uses: pypa/gh-action-pypi-publish@release/v1
45+
uses: pypa/gh-action-pypi-publish@release/v1
46+
with:
47+
packages_dir: artifact/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "faker-cli"
3-
version = "0.1.0"
3+
version = "v0.0.2"
44
description = ""
55
authors = ["Damon P. Cortesi <d.lifehacker@gmail.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)