Skip to content

Commit c62761e

Browse files
committed
0.2.0 release
1 parent b347903 commit c62761e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
tags:
66
- "v*"
7-
87
jobs:
98
build-n-publish:
109
name: Build and publish Xvec to PyPI
@@ -14,17 +13,18 @@ jobs:
1413
- uses: actions/checkout@v4
1514

1615
- name: Set up Python
17-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1817
with:
1918
python-version: "3.x"
2019

21-
- name: Build a binary wheel and a source tarball
20+
- name: Build source and wheel distributions
2221
run: |
23-
python -m pip install --upgrade build
22+
python -m pip install --upgrade build twine
2423
python -m build
24+
twine check --strict dist/*
2525
2626
- name: Publish distribution to PyPI
27-
uses: pypa/gh-action-pypi-publish@v1
27+
uses: pypa/gh-action-pypi-publish@release/v1
2828
with:
2929
user: __token__
3030
password: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)