Skip to content

Commit 8291c93

Browse files
authored
Merge pull request #750 from SaltyCatFish/742_wrong_if_condition
Updated if condition as per ticket
2 parents df663bb + 44f3033 commit 8291c93

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)