Skip to content

Commit 727914c

Browse files
Update release workflow
1 parent 3568e1c commit 727914c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github /workflows/release.yml .github/workflows/release.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ name: Release
33
on:
44
push:
55
tags:
6-
- '*'
6+
- "*"
77

88
jobs:
99
pypi-publish:
1010
runs-on: ubuntu-latest
11-
if: github.repository == 'julianwachholz/django-autocompletefilter'
11+
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'julianwachholz/django-autocompletefilter'
1212
environment:
1313
name: pypi
1414
url: https://pypi.org/p/django-autocompletefilter
1515
permissions:
16+
contents: write
1617
id-token: write
1718
steps:
1819
- uses: actions/checkout@v4
@@ -33,5 +34,10 @@ jobs:
3334
twine check dist/*
3435
3536
- name: Upload packages
36-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
3737
uses: pypa/[email protected]
38+
39+
- name: Create release
40+
uses: softprops/action-gh-release@v2
41+
with:
42+
generate_release_notes: true
43+
files: dist/*

0 commit comments

Comments
 (0)