We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02bf57e commit bbdfb8fCopy full SHA for bbdfb8f
.github/workflows/python-publish.yml
@@ -37,9 +37,9 @@ jobs:
37
sed -ie "s/version = .*/version = $VERSION/" setup.cfg
38
python -m pip install --upgrade pip
39
pip install build
40
- echo version::$VERSION >> $GITHUB_OUTPUT
+ echo version=$VERSION >> $GITHUB_OUTPUT
41
NAME="sqlalchemy_iris"-${VERSION}-py3-none-any
42
- echo name::$NAME >> $GITHUB_OUTPUT
+ echo name=$NAME >> $GITHUB_OUTPUT
43
- name: Install requirements
44
run: |
45
pip install -U pip setuptools
@@ -50,7 +50,7 @@ jobs:
50
- name: Build Python package
51
run: ./scripts/build-dist.sh
52
- name: Publish package
53
- uses: pypa/gh-action-pypi-publish@release/v1.5
+ uses: pypa/gh-action-pypi-publish@release/v1
54
with:
55
user: __token__
56
password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments