Skip to content

Commit 44f3033

Browse files
committed
Updated if condition as per ticket
1 parent 9a81d11 commit 44f3033

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/guides/github-actions-ci-cd-sample/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
password: ${{ secrets.test_pypi_password }}
3535
repository_url: https://test.pypi.org/legacy/
3636
- name: Publish distribution 📦 to PyPI
37-
if: startsWith(github.event.ref, 'refs/tags')
37+
if: startsWith(github.ref, 'refs/tags')
3838
uses: pypa/gh-action-pypi-publish@master
3939
with:
4040
password: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)