Skip to content

Commit fc3bddd

Browse files
authored
Fix release Action reference (as suggested by author)
The Action emits a warning when gh-action-pypi-publish is used with `master` as a reference. The authors suggest to update to `release/v1`. See jazzband/django-analytical#241 (comment) and https://github.com/pypa/gh-action-pypi-publish?tab=readme-ov-file#-master-branch-sunset-
1 parent 1ad42f3 commit fc3bddd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Upload packages to Jazzband
3535
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
36-
uses: pypa/gh-action-pypi-publish@master
36+
uses: pypa/gh-action-pypi-publish@release/v1
3737
with:
3838
user: jazzband
3939
password: ${{ secrets.JAZZBAND_RELEASE_KEY }}

0 commit comments

Comments
 (0)